Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/network/proxy
- Timestamp:
- Sep 1, 2006, 8:06:39 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
r9691 r9715 27 27 28 28 29 NewObjectListDefinition(NetworkSettings);29 ObjectListDefinition(NetworkSettings); 30 30 31 31 NetworkSettings* NetworkSettings::singletonRef = NULL; -
branches/new_class_id/src/lib/network/proxy/network_settings.h
r9690 r9715 24 24 class NetworkSettings : public BaseObject 25 25 { 26 NewObjectListDeclaration(NetworkSettings);26 ObjectListDeclaration(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
r9691 r9715 40 40 41 41 SHELL_COMMAND(forceReconnect, ProxyControl, forceReconnectionShell); 42 NewObjectListDefinition(ProxyControl);42 ObjectListDefinition(ProxyControl); 43 43 44 44 /** -
branches/new_class_id/src/lib/network/proxy/proxy_control.h
r9690 r9715 30 30 class ProxyControl : public Synchronizeable 31 31 { 32 NewObjectListDeclaration(ProxyControl);32 ObjectListDeclaration(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.