Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 12, 2010, 3:48:24 PM (14 years ago)
Author:
kolibri7
Message:

implementing the XMLPort function for LoD; getting some erreors from gcc…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/lod/src/orxonox/Level.h

    r5929 r6691  
    3434#include <list>
    3535#include <string>
     36#include <map>
    3637#include "core/BaseObject.h"
    3738#include "network/synchronisable/Synchronisable.h"
     39#include "graphics/MeshLodInformation.h"
    3840
    3941namespace orxonox
     
    6062            BaseObject* getObject(unsigned int index) const;
    6163
     64            void addLodInfo(const MeshLodInformation* object);
     65            MeshLodInformation* getLodInfo(unsigned int index) const;
     66
    6267            void setGametypeString(const std::string& gametype);
    6368            inline const std::string& getGametypeString() const
     
    6671            void networkcallback_applyXMLFile();
    6772
    68             std::string            description_;
    69             std::string            gametype_;
    70             std::string            xmlfilename_;
    71             XMLFile*               xmlfile_;
    72             std::list<BaseObject*> objects_;
     73            std::string                    description_;
     74            std::string                    gametype_;
     75            std::string                    xmlfilename_;
     76            XMLFile*                       xmlfile_;
     77            std::list<BaseObject*>         objects_;
     78            std::map<std::string,MeshLodInformation*>  lodInformation_;
    7379    };
    7480}
Note: See TracChangeset for help on using the changeset viewer.