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.
tdevelop/languages/cpp/app_templates/opienet/simmplemodule.h

37 lines
941 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 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