summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opienet/simmplemodule.h
blob: 9158a7c8edd18bb4f2865a2094bf8f9825793eac (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 VirtualModule : Module {

signals:
    void updateInterface(Interface* i );

public:
    VirtualModule();
    ~VirtualModule();

    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 VirtualModule();
    }
};

#endif