Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 22, 2007, 10:15:06 PM (17 years ago)
Author:
rgrieder
Message:
  • deleted obsolete classes: BaseEntity, Entity, Light and SceneNode (please complain if not agreed)
  • improved include guard naming consistency
Location:
code/branches/FICN/src/loader
Files:
2 edited

Legend:

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

    r660 r673  
    55* @author Nicolas Perrenoud <nicolape@ee.ethz.ch>
    66*/
     7
     8#ifndef _LevelLoader_H__
     9#define _LevelLoader_H__
    710
    811#include <string>
     
    1518//#include "xml/xmlParser.h"
    1619
    17 #ifndef __MODULE_LEVELLOADER__
    18 #define __MODULE_LEVELLOADER__
    19 
    20 using namespace std;
    2120
    2221namespace loader
     
    2625  public:
    2726    // Constructors, loads the level file and some information data
    28     LevelLoader(string file, string dir="levels");
     27    LevelLoader(std::string file, std::string dir="levels");
    2928    // Destructor
    3029    ~LevelLoader();
     
    3332
    3433    // Getters
    35     inline string name() {return name_; };
    36     inline string description() {return description_; };
    37     inline string image() {return image_; };
     34    inline std::string name() {return name_; };
     35    inline std::string description() {return description_; };
     36    inline std::string image() {return image_; };
    3837  private:
    3938    //! Level information
     
    5655    TiXmlElement* rootElement;
    5756
    58 
    5957  };
    6058}
    61 #endif
     59
     60#endif /* _LevelLoader_H__ */
  • code/branches/FICN/src/loader/loader_platform.h

    r553 r673  
    2727
    2828
    29 #ifndef LOADER_PLATFORM_H
    30 #define LOADER_PLATFORM_H
     29#ifndef _LoaderPlatform_H__
     30#define _LoaderPlatform_H__
    3131
    3232
     
    4444
    4545
    46 #endif /* LOADER_PLATFORM_H */
     46#endif /* _LoaderPlatform_H__ */
Note: See TracChangeset for help on using the changeset viewer.