Changeset 531 for code/branches/FICN/src/network
- Timestamp:
- Dec 15, 2007, 6:37:35 AM (17 years ago)
- Location:
- code/branches/FICN/src/network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/network/PacketDecoder.cc
r514 r531 42 42 43 43 PacketDecoder::PacketDecoder(){} 44 45 PacketDecoder::~PacketDecoder(){} 44 46 45 47 //call this function out of an instance of PacketDecoder -
code/branches/FICN/src/network/PacketManager.h
r478 r531 45 45 public: 46 46 PacketDecoder(); 47 virtual ~PacketDecoder(); 47 48 //call this function to decode, it calls the right decoding function below 48 49 bool elaborate( ENetPacket* packet, int clientId ); -
code/branches/FICN/src/network/Synchronisable.cc
r405 r531 11 11 12 12 #include "Synchronisable.h" 13 #include "orxonox/core/CoreIncludes.h" 14 13 15 14 16 namespace network { … … 20 22 Synchronisable::Synchronisable() 21 23 { 24 RegisterRootObject(Synchronisable); 22 25 static int idCounter=0; 23 26 datasize=0;
Note: See TracChangeset
for help on using the changeset viewer.