Changeset 4483 for source/ariba/utility/system/StartupWrapper.h
- Timestamp:
- Jun 25, 2009, 11:06:52 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/StartupWrapper.h
r4462 r4483 44 44 #include "SystemQueue.h" 45 45 #include "StartupInterface.h" 46 #include "../configuration/Configuration.h" 46 #include "ariba/utility/configuration/Configuration.h" 47 #include "BlockingMethod.h" 47 48 48 49 #ifdef UNDERLAY_OMNET … … 69 70 class StartupWrapper : public SystemEventListener { 70 71 public: 71 static void initSystem(); 72 static void startSystem(); 73 static void stopSystem(); 74 72 75 static void initConfig(string filename); 73 76 static void startup(StartupInterface* service, bool block = true); … … 96 99 void waitForExit(); 97 100 StartupInterface* service; 101 102 class AsyncShutdown : public BlockingMethod { 103 public: 104 AsyncShutdown(StartupInterface* _service); 105 protected: 106 virtual void dispatchFunction(); 107 virtual void blockingFunction(); // unused 108 private: 109 StartupInterface* service; 110 }; 111 98 112 }; 99 113
Note:
See TracChangeset
for help on using the changeset viewer.