Changeset 2949 for code/branches/netp2/src/network/packet
- Timestamp:
- May 2, 2009, 4:19:43 PM (16 years ago)
- Location:
- code/branches/netp2/src/network/packet
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/netp2/src/network/packet/FunctionCalls.cc
r2945 r2949 171 171 } 172 172 173 void FunctionCalls::addCallStatic( uint32_t networkID, MultiType* mt1, MultiType* mt2, MultiType* mt3, MultiType* mt4,MultiType* mt5){173 void FunctionCalls::addCallStatic( uint32_t networkID, const MultiType* mt1, const MultiType* mt2, const MultiType* mt3, const MultiType* mt4, const MultiType* mt5){ 174 174 assert(!isDataENetAllocated()); 175 175 … … 245 245 } 246 246 247 void FunctionCalls::addCallMember( uint32_t networkID, uint32_t objectID, MultiType* mt1, MultiType* mt2, MultiType* mt3, MultiType* mt4,MultiType* mt5){247 void FunctionCalls::addCallMember( uint32_t networkID, uint32_t objectID, const MultiType* mt1, const MultiType* mt2, const MultiType* mt3, const MultiType* mt4, const MultiType* mt5){ 248 248 assert(!isDataENetAllocated()); 249 249 -
code/branches/netp2/src/network/packet/FunctionCalls.h
r2938 r2949 32 32 bool process(); 33 33 34 void addCallStatic( uint32_t networkID, MultiType* mt1=0, MultiType* mt2=0, MultiType* mt3=0, MultiType* mt4=0,MultiType* mt5=0);35 void addCallMember( uint32_t networkID, uint32_t objectID, MultiType* mt1=0, MultiType* mt2=0, MultiType* mt3=0, MultiType* mt4=0,MultiType* mt5=0);34 void addCallStatic( uint32_t networkID, const MultiType* mt1=0, const MultiType* mt2=0, const MultiType* mt3=0, const MultiType* mt4=0, const MultiType* mt5=0); 35 void addCallMember( uint32_t networkID, uint32_t objectID, const MultiType* mt1=0, const MultiType* mt2=0, const MultiType* mt3=0, const MultiType* mt4=0, const MultiType* mt5=0); 36 36 private: 37 37 uint32_t nrOfCalls_;
Note: See TracChangeset
for help on using the changeset viewer.