Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
simplePlugin.hh
1 #ifndef SIMPLEPLUGIN_HH_INCLUDED
2 #define SIMPLEPLUGIN_HH_INCLUDED
3 
6 
7 class SimplePlugin : public QObject, BaseInterface
8 {
9 Q_OBJECT
10 Q_INTERFACES(BaseInterface)
11 
12 public :
13 
14  ~SimplePlugin() {};
15 
16  QString name() { return QString("SimplePlugin"); };
17 
18  QString description() { return QString("Does actually nothing but works!"); };
19 
20 };
21 
22 
23 #endif
Interface class from which all plugins have to be created.
QString name()
Return a name for the plugin.
Definition: simplePlugin.hh:16
QString description()
Return a description of what the plugin is doing.
Definition: simplePlugin.hh:18