blob: b19152b62d75e207e7bf4979ecf3a59f211b7235 (
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 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 VirtualModule();
}
};
#endif
|