Changeset 3214 for code/trunk/src/network/NetworkFunction.cc
- Timestamp:
- Jun 23, 2009, 6:02:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/network/NetworkFunction.cc
r3084 r3214 28 28 29 29 #include "NetworkFunction.h" 30 #include <string> 31 #include "synchronisable/Synchronisable.h" 30 #include "core/CoreIncludes.h" 32 31 33 32 namespace orxonox … … 42 41 std::map<uint32_t, NetworkMemberFunctionBase*> NetworkMemberFunctionBase::idMap_; 43 42 44 NetworkFunctionBase::NetworkFunctionBase( std::stringname)43 NetworkFunctionBase::NetworkFunctionBase(const std::string& name) 45 44 { 46 45 RegisterRootObject(NetworkFunctionBase); … … 58 57 59 58 60 NetworkFunctionStatic::NetworkFunctionStatic(FunctorStatic* functor, std::stringname, const NetworkFunctionPointer& p):59 NetworkFunctionStatic::NetworkFunctionStatic(FunctorStatic* functor, const std::string& name, const NetworkFunctionPointer& p): 61 60 NetworkFunctionBase(name) 62 61 { … … 75 74 76 75 77 NetworkMemberFunctionBase::NetworkMemberFunctionBase( std::stringname, const NetworkFunctionPointer& p):76 NetworkMemberFunctionBase::NetworkMemberFunctionBase(const std::string& name, const NetworkFunctionPointer& p): 78 77 NetworkFunctionBase(name) 79 78 {
Note: See TracChangeset
for help on using the changeset viewer.