Changeset 10624 for code/trunk/src/libraries/network/FunctionCall.h
- Timestamp:
- Oct 4, 2015, 9:12:21 PM (10 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/libraries/network/FunctionCall.h
r7495 r10624 52 52 bool execute(); 53 53 54 void setCallStatic( uint32_t networkID, const MultiType* mt1=0, const MultiType* mt2=0, const MultiType* mt3=0, const MultiType* mt4=0, const MultiType* mt5=0); 55 void setCallMember( 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); 54 void setCall( uint32_t networkID, uint32_t objectID, const MultiType& mt1, const MultiType& mt2, const MultiType& mt3, const MultiType& mt4, const MultiType& mt5); 56 55 57 56 void saveData( uint8_t*& mem ); … … 59 58 private: 60 59 uint32_t nrOfArguments_; 61 bool bIsStatic_;62 60 uint32_t functionID_; 63 uint32_t objectID_; 61 uint32_t objectID_; // equals OBJECTID_UNKNOWN for static functions 64 62 uint32_t size_; 65 63 std::vector<MultiType> arguments_;
Note: See TracChangeset
for help on using the changeset viewer.