You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kue/pluginloader.h

26 lines
429 B
C

#ifndef _PLUGINLOADER_H
#define _PLUGINLOADER_H
#include <tqvaluelist.h>
class TQString;
class KuePluginInfo {
public:
TQString name;
TQString description;
TQString filename;
TQString type;
// Minimum and maximum number of teams
unsigned int minTeams;
unsigned int maxTeams;
};
namespace KuePluginLoader {
TQValueList<KuePluginInfo> available();
KuePluginInfo getInformation(const TQString &filename);
};
#endif