summaryrefslogtreecommitdiffstats
path: root/kue/pluginloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/pluginloader.h')
-rw-r--r--kue/pluginloader.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/kue/pluginloader.h b/kue/pluginloader.h
new file mode 100644
index 00000000..de5e1aa0
--- /dev/null
+++ b/kue/pluginloader.h
@@ -0,0 +1,25 @@
+#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