diff options
Diffstat (limited to 'languages/cpp/app_templates/opienet/simplemodule.h')
-rw-r--r-- | languages/cpp/app_templates/opienet/simplemodule.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/opienet/simplemodule.h b/languages/cpp/app_templates/opienet/simplemodule.h new file mode 100644 index 00000000..1b02b688 --- /dev/null +++ b/languages/cpp/app_templates/opienet/simplemodule.h @@ -0,0 +1,36 @@ +#ifndef %{APPNAME}_NETWORK_MODULE_H +#define %{APPNAME}_NETWORK_MODULE_H + +#include <module.h> + +class %{APPNAME}Module : Module { + +signals: + void updateInterface(Interface* i ); + +public: + %{APPNAME}Module(); + ~%{APPNAME}Module(); + + const QString type() {return QString::fromLatin1("vpn" );} + void setProfile( const QString& ) {} + bool isOwner( Interface* ); + QWidget *configure( Interface* ); + QWidget *information( Interface* ); + QList<Interface> getInterfaces(); + void possibleNewInterfaces( QMap<QString, QString>& ); + Interface *addNewInterface( const QString& ); + bool remove( Interface* iface ); + QString getPixmapName( Interface* ) {return QString::fromLatin1("Tux"); } + void receive( const QCString&, const QByteArray& ar ) {} // don't listen +private: + QList<Interface> m_interfaces; +}; + +extern "C" { + void* create_plugin() { + return new %{APPNAME}Module(); + } +}; + +#endif |