summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opienet/simplemodule.h
blob: 6fce8b108dd93bf53a4852054a6add1b81979a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 TQString type() {return TQString::fromLatin1("vpn" );}
    void setProfile( const TQString& ) {}
    bool isOwner( Interface* );
    TQWidget *configure( Interface* );
    TQWidget *information(  Interface* );
    TQList<Interface> getInterfaces();
    void possibleNewInterfaces( TQMap<TQString, TQString>& );
    Interface *addNewInterface( const TQString& );
    bool remove( Interface* iface );
    TQString getPixmapName( Interface*  ) {return TQString::fromLatin1("Tux"); }
    void receive( const TQCString&, const TQByteArray& ar ) {} // don't listen
private:
    TQList<Interface> m_interfaces;
};

extern "C" {
    void* create_plugin() {
        return new %{APPNAME}Module();
    }
};

#endif