Changeset 682 for code/branches/FICN/src/loader/LevelLoader.h
- Timestamp:
- Dec 25, 2007, 10:37:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/loader/LevelLoader.h
r678 r682 10 10 11 11 #include <string> 12 #include <vector>13 #include <iostream>14 12 15 #include "LoaderP latform.h"13 #include "LoaderPrereqs.h" 16 14 #include "tinyxml/tinyxml.h" 17 15 18 //#include "xml/xmlParser.h" 19 16 class TiXmlDocument; // Forward declaration 17 class TiXmlElement; // Forward declaration 20 18 21 19 namespace loader … … 25 23 public: 26 24 // 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"); 28 26 // Destructor 29 ~LevelLoader();27 virtual ~LevelLoader(); 30 28 // Loads all level data 31 29 void loadLevel(); … … 52 50 53 51 // Xml-Stuff 54 TiXmlDocument doc; 55 TiXmlElement* rootElement; 56 52 TiXmlDocument doc_; 53 TiXmlElement *rootElement_; 57 54 }; 58 55 }
Note: See TracChangeset
for help on using the changeset viewer.