Changeset 9690 in orxonox.OLD for branches/new_class_id/src/lib/network/proxy
- Timestamp:
- Aug 22, 2006, 4:45:14 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/network/proxy
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/network/proxy/network_settings.cc
r9656 r9690 27 27 28 28 29 NewObjectListDefinition(NetworkSettings); 29 30 30 31 NetworkSettings* NetworkSettings::singletonRef = NULL; -
branches/new_class_id/src/lib/network/proxy/network_settings.h
r9494 r9690 24 24 class NetworkSettings : public BaseObject 25 25 { 26 26 NewObjectListDeclaration(NetworkSettings); 27 27 public: 28 28 inline static NetworkSettings* getInstance() { if (!NetworkSettings::singletonRef) NetworkSettings::singletonRef = new NetworkSettings(); -
branches/new_class_id/src/lib/network/proxy/proxy_control.cc
r9656 r9690 41 41 42 42 SHELL_COMMAND(forceReconnect, ProxyControl, forceReconnectionShell); 43 NewObjectListDefinition(ProxyControl); 43 44 44 45 /** -
branches/new_class_id/src/lib/network/proxy/proxy_control.h
r9656 r9690 30 30 class ProxyControl : public Synchronizeable 31 31 { 32 32 NewObjectListDeclaration(ProxyControl); 33 33 public: 34 34 inline static ProxyControl* getInstance() { if (!ProxyControl::singletonRef) ProxyControl::singletonRef = new ProxyControl();
Note: See TracChangeset
for help on using the changeset viewer.