00001 #ifndef ASFULLSETUP_H 00002 #define ASFULLSETUP_H 00003 00004 #include <netnode.h> 00005 00006 // pure virtual (component oriented) interface of any 00007 // plugin that offers a full setup 00008 class AsFullSetup : public RuntimeInfo { 00009 00010 public : 00011 00012 AsFullSetup( ANetNodeInstance * NNI ) : 00013 RuntimeInfo( NNI ) { 00014 } 00015 00016 virtual const QString & description( void ) = 0; 00017 virtual bool triggersVPN( void ) 00018 { return 0; } 00019 00020 }; 00021 00022 #endif
1.4.2