Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 9, 2008, 8:28:24 PM (16 years ago)
Author:
landauf
Message:
  • removed #include "core/CoreIncludes.h" from Gamestate.h and put it into the .cc files
  • removed a warning in Client.cc
Location:
code/trunk/src/network/packet
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/network/packet/Gamestate.cc

    r1751 r1752  
    3030#include "network/ClientInformation.h"
    3131#include "network/GamestateHandler.h"
     32#include "core/CoreIncludes.h"
    3233#include "core/Iterator.h"
    3334
     
    267268  assert(HEADER->crc32==calcCRC(ndata+sizeof(GamestateHeader), HEADER->normsize));
    268269#endif
    269  
     270
    270271  //copy over the header
    271272  *GAMESTATE_HEADER(ndata) = *HEADER;
     
    386387    return HEADER->compressed;
    387388  }
    388  
     389
    389390  int Gamestate::getBaseID(){
    390391    return HEADER->base_id;
  • code/trunk/src/network/packet/Gamestate.h

    r1751 r1752  
    3232#include "util/CRC32.h"
    3333#endif
    34 #include "core/CoreIncludes.h"
    3534
    3635#ifndef NETWORK_PACKETGAMESTATE_H
     
    8382  private:
    8483    unsigned int calcGamestateSize(unsigned int id, int mode=0x0);
    85     void removeObject(orxonox::ObjectList<Synchronisable>::iterator &it);
     84    void removeObject(orxonox::ObjectListIterator<Synchronisable> &it);
    8685
    8786
Note: See TracChangeset for help on using the changeset viewer.