Changeset 1747 for code/trunk/src/network/GamestateClient.cc
- Timestamp:
- Sep 9, 2008, 4:25:52 AM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core3 (added) merged: 1573-1574,1583-1586,1591-1594,1596-1597,1603,1606-1607,1610-1611,1655,1658,1676-1679,1681-1685,1687,1716-1723,1725-1729,1736
- Property svn:mergeinfo changed
-
code/trunk/src/network/GamestateClient.cc
r1735 r1747 33 33 #include "core/CoreIncludes.h" 34 34 #include "core/BaseObject.h" 35 #include "core/Iterator.h" 35 36 #include "Synchronisable.h" 36 37 … … 68 69 return true; 69 70 } 70 71 71 72 int GamestateClient::processGamestates(){ 72 73 if(tempGamestate_==NULL) … … 89 90 * @return iterator pointing to the next object in the list 90 91 */ 91 void GamestateClient::removeObject(orxonox:: Iterator<Synchronisable>&it) {92 orxonox:: Iterator<Synchronisable>temp=it;92 void GamestateClient::removeObject(orxonox::ObjectList<Synchronisable>::iterator &it) { 93 orxonox::ObjectList<Synchronisable>::iterator temp=it; 93 94 ++it; 94 95 delete *temp;
Note: See TracChangeset
for help on using the changeset viewer.