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.
26 lines
429 B
C
26 lines
429 B
C
7 months ago
|
#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
|