00001 #ifndef VPNRUN_H 00002 #define VPNRUN_H 00003 00004 #include <netnode.h> 00005 #include "vpndata.h" 00006 00007 class VPNRun : public RuntimeInfo { 00008 00009 public : 00010 00011 VPNRun( ANetNodeInstance * NNI, VPNData & Data ) : 00012 RuntimeInfo( NNI ) 00013 { } 00014 00015 virtual RuntimeInfo * connection( void ) 00016 { return this; } 00017 00018 State_t detectState( void ) 00019 { return Unknown; } 00020 00021 protected : 00022 00023 QString setMyState( NetworkSetup * , Action_t, bool ) 00024 { return QString(); } 00025 }; 00026 00027 #endif
1.4.2