Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 25, 2007, 10:37:29 PM (17 years ago)
Author:
rgrieder
Message:
  • adapted the core to be an actual windows dll (only tested with MSVC)
  • misc header files dependency changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/loader/LevelLoader.h

    r678 r682  
    1010
    1111#include <string>
    12 #include <vector>
    13 #include <iostream>
    1412
    15 #include "LoaderPlatform.h"
     13#include "LoaderPrereqs.h"
    1614#include "tinyxml/tinyxml.h"
    1715
    18 //#include "xml/xmlParser.h"
    19 
     16class TiXmlDocument;   // Forward declaration
     17class TiXmlElement;    // Forward declaration
    2018
    2119namespace loader
     
    2523  public:
    2624    // Constructors, loads the level file and some information data
    27     LevelLoader(std::string file, std::string dir="levels");
     25    LevelLoader(std::string file, std::string dir = "levels");
    2826    // Destructor
    29     ~LevelLoader();
     27    virtual ~LevelLoader();
    3028    // Loads all level data
    3129    void loadLevel();
     
    5250
    5351    // Xml-Stuff
    54     TiXmlDocument doc;
    55     TiXmlElement* rootElement;
    56 
     52    TiXmlDocument doc_;
     53    TiXmlElement *rootElement_;
    5754  };
    5855}
Note: See TracChangeset for help on using the changeset viewer.