diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 114a878c64ce6f8223cfd22d76a20eb16d177e5e (patch) | |
tree | acaf47eb0fa12142d3896416a69e74cbf5a72242 /languages/cpp/app_templates/opienet/simplemodule.h | |
download | tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.tar.gz tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |