Changeset 3037 for source/ariba/communication/BaseCommunication.h
- Timestamp:
- Apr 22, 2009, 9:07:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.h
r2483 r3037 122 122 */ 123 123 class BaseCommunication : public MessageReceiver, NetworkChangeInterface { 124 125 124 use_logging_h(BaseCommunication); 126 127 125 public: 128 /** 129 * Constructs a Base Communication instance. 130 * Listens default on port number 41402 131 */ 132 BaseCommunication(const NetworkLocator* _locallocator, const uint16_t _listenport); 133 134 /** 135 * Destructs a Base Communication instance 126 127 /** 128 * Default ctor that just creates an empty 129 * non functional base communication 130 */ 131 BaseCommunication(); 132 133 /** 134 * Default dtor that does nothing 136 135 */ 137 136 virtual ~BaseCommunication(); 137 138 /** 139 * Startup the base communication, start modules etc. 140 */ 141 void start(const NetworkLocator* _locallocator, const uint16_t _listenport); 142 143 /** 144 * stop the base communication, stop modules etc. 145 */ 146 void stop(); 138 147 139 148 /**
Note:
See TracChangeset
for help on using the changeset viewer.