Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 23, 2009, 8:53:33 PM (16 years ago)
Author:
landauf
Message:

moved BaseFactory from Factory.h to ClassFactory.h

File:
1 edited

Legend:

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

    r5738 r5769  
    4747namespace orxonox
    4848{
     49    // ###############################
     50    // ###       BaseFactory       ###
     51    // ###############################
     52    //! Base-class of ClassFactory.
     53    class _CoreExport BaseFactory
     54    {
     55        public:
     56            virtual BaseObject* fabricate(BaseObject* creator) = 0;
     57            virtual ~BaseFactory() {};
     58    };
     59
    4960    // ###############################
    5061    // ###      ClassFactory       ###
Note: See TracChangeset for help on using the changeset viewer.