Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3525 in orxonox.OLD for orxonox/branches/levelloader/src/factory.h


Ignore:
Timestamp:
Mar 13, 2005, 6:59:20 PM (20 years ago)
Author:
chris
Message:

orxonox/branches/levelloader: removed excess class usage adn messed with makefile definitions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/src/factory.h

    r3504 r3525  
    88
    99#include "stdincl.h"
    10 #include "xmlparser/tinyxml.h"
    11 #include "xmlparser/tinystr.h"
    12 #include "base_object.h"
    13 #include "orxonox.h"
    1410#include "world.h"
    1511
     
    1915  ~CLASSFactory (); \
    2016 private: \
    21         BaseObject* fabricate( TiXMLElement* root) \
     17        BaseObject* fabricate( TiXmlElement* root) \
    2218        { \
    2319                if(!strcmp(root->Value(), getClassname())) return new CLASS( root); \
     
    3834  ~Factory ();
    3935
    40         virtual BaseObject* fabricate( TiXMLElement* root);
     36        virtual BaseObject* fabricate( TiXmlElement* root);
    4137        void initialize();
    4238  void registerFactory( Factory* factory);
     
    5349// helper function
    5450
    55 const char* grabParameter( TiXMLElement* root, const char* name);
     51const char* grabParameter( TiXmlElement* root, const char* name);
    5652
    57 #endif /* _LEVELFACTORY_H */
     53#endif /* _FACTORY_H */
     54
Note: See TracChangeset for help on using the changeset viewer.