You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
926 B
37 lines
926 B
#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
|