Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 2:55:34 AM (15 years ago)
Author:
landauf
Message:

Renamed BaseFactory as Factory
Added function ClassByLowercaseString

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core5/src/libraries/core/ClassFactory.h

    r5778 r5779  
    4646namespace orxonox
    4747{
    48     // ###############################
    49     // ###       BaseFactory       ###
    50     // ###############################
     48    // ###########################
     49    // ###       Factory       ###
     50    // ###########################
    5151    //! Base-class of ClassFactory.
    52     class _CoreExport BaseFactory
     52    class _CoreExport Factory
    5353    {
    5454        public:
    55             virtual ~BaseFactory() {};
     55            virtual ~Factory() {};
    5656            virtual BaseObject* fabricate(BaseObject* creator) = 0;
    5757    };
     
    6262    //! The ClassFactory is able to create new objects of a specific class.
    6363    template <class T>
    64     class ClassFactory : public BaseFactory
     64    class ClassFactory : public Factory
    6565    {
    6666        public:
Note: See TracChangeset for help on using the changeset viewer.