Changeset 9589 for code/branches/core6/src/libraries/network
- Timestamp:
- Mar 26, 2013, 11:43:43 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries/network
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/network/ClientConnectionListener.h
r9563 r9589 31 31 32 32 #include "NetworkPrereqs.h" 33 #include "core/ class/OrxonoxClass.h"33 #include "core/object/Listable.h" 34 34 35 35 namespace orxonox 36 36 { 37 class _NetworkExport ClientConnectionListener : virtual public OrxonoxClass37 class _NetworkExport ClientConnectionListener : virtual public Listable 38 38 { 39 39 public: -
code/branches/core6/src/libraries/network/NetworkChatListener.h
r9563 r9589 32 32 #include "NetworkPrereqs.h" 33 33 34 #include "core/ class/OrxonoxClass.h"34 #include "core/object/Listable.h" 35 35 36 36 namespace orxonox … … 43 43 in Host and ChatManager. ChatManager is the main derivative of this interface. 44 44 */ 45 class _NetworkExport NetworkChatListener : virtual public OrxonoxClass45 class _NetworkExport NetworkChatListener : virtual public Listable 46 46 { 47 47 friend class Host; -
code/branches/core6/src/libraries/network/NetworkFunction.cc
r7284 r9589 57 57 std::map<std::string, NetworkFunctionBase*>::iterator it; 58 58 for( it=map.begin(); it!=map.end(); ++it ) 59 it->second->destroy();59 delete it->second; 60 60 } 61 61 -
code/branches/core6/src/libraries/network/NetworkFunction.h
r9563 r9589 39 39 #include <boost/static_assert.hpp> 40 40 41 #include "core/object/Listable.h" 41 42 #include "core/class/Identifier.h" 42 43 #include "core/command/Functor.h" … … 70 71 71 72 72 class _NetworkExport NetworkFunctionBase: virtual public OrxonoxClass{73 class _NetworkExport NetworkFunctionBase: virtual public Listable { 73 74 public: 74 75 NetworkFunctionBase(const std::string& name);
Note: See TracChangeset
for help on using the changeset viewer.