Changeset 7770 for code/branches/presentation
- Timestamp:
- Dec 15, 2010, 9:57:17 PM (14 years ago)
- Location:
- code/branches/presentation/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/libraries/network/MasterServer.h
r7739 r7770 27 27 */ 28 28 29 #ifndef _MasterServer_ 30 #define _MasterServer_ 29 #ifndef _MasterServer_H__ 30 #define _MasterServer_H__ 31 31 32 32 /* orxonox includes */ … … 80 80 } 81 81 82 #endif /* _MasterServer_ */82 #endif /* _MasterServer_H__ */ -
code/branches/presentation/src/libraries/network/MasterServerComm.h
r7769 r7770 27 27 */ 28 28 29 #ifndef MASTERSERVERCOMM_H30 #define MASTERSERVERCOMM_H29 #ifndef _MasterServerComm_H__ 30 #define _MasterServerComm_H__ 31 31 32 32 #include <cstdlib> … … 106 106 } 107 107 108 #endif /* MASTERSERVERCOMM_H*/108 #endif /* _MasterServerComm_H__ */ -
code/branches/presentation/src/libraries/network/MasterServerProtocol.h
r7763 r7770 27 27 */ 28 28 29 #ifndef MASTER_SERVER_PROTO30 #define MASTER_SERVER_PROTO29 #ifndef _MasterServerProtocol_H__ 30 #define _MasterServerProtocol_H__ 31 31 32 32 /* master server address (to be moved elsewhere later) */ … … 80 80 81 81 /* default master server port */ 82 #define ORX_MSERVER_PORT 555 6682 #define ORX_MSERVER_PORT 55557 83 83 84 84 … … 90 90 91 91 92 #endif /* MASTER_SERVER_PROTO*/92 #endif /* _MasterServerProtocol_H__ */ -
code/branches/presentation/src/libraries/network/WANDiscovery.h
r7763 r7770 24 24 */ 25 25 26 #ifndef WANDISCOVERY_H27 #define WANDISCOVERY_H26 #ifndef _WANDiscovery_H__ 27 #define _WANDiscovery_H__ 28 28 29 29 #include "NetworkPrereqs.h" … … 110 110 } // tolua_export 111 111 112 #endif // WANDISCOVERY_H112 #endif // _WANDiscovery_H__ -
code/branches/presentation/src/modules/pickup/PickupManager.cc
r7549 r7770 61 61 /*static*/ const std::string PickupManager::guiName_s = "PickupInventory"; 62 62 63 // Register static ne wtork functions that are used to communicate changes to pickups over the network, such that the PickupInventory can display the information about the pickups properly.63 // Register static network functions that are used to communicate changes to pickups over the network, such that the PickupInventory can display the information about the pickups properly. 64 64 registerStaticNetworkFunction(PickupManager::pickupChangedUsedNetwork); 65 65 registerStaticNetworkFunction(PickupManager::pickupChangedPickedUpNetwork);
Note: See TracChangeset
for help on using the changeset viewer.