00001 #include <netnode.h> 00002 #include "networkdata.h" 00003 00004 class NetworkRun : public RuntimeInfo { 00005 00006 public : 00007 00008 NetworkRun( ANetNodeInstance * NNI, 00009 NetworkData & Data ) : RuntimeInfo( NNI ) 00010 { } 00011 00012 virtual RuntimeInfo * connection( void ) 00013 { return this; } 00014 00015 State_t detectState( void ); 00016 00017 protected : 00018 00019 QString setMyState( NetworkSetup * , Action_t, bool ); 00020 };
1.4.2