Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 24, 2013, 4:16:01 PM (11 years ago)
Author:
landauf
Message:

it's probably better to store the context in a seaprate interface instead of adding a constructor argument to OrxonoxClass

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/src/libraries/core/OrxonoxClass.h

    r9561 r9562  
    7070
    7171        public:
    72             OrxonoxClass(Context* context = NULL);
     72            OrxonoxClass();
    7373            virtual ~OrxonoxClass();
    7474
     
    8181            /// Returns the Identifier of the object.
    8282            inline Identifier* getIdentifier() const { return this->identifier_; }
    83 
    84             /// Returns the object's Context.
    85             inline Context* getContext() const { return this->context_; }
    8683
    8784            bool isA(const Identifier* identifier);
     
    170167
    171168            Identifier* identifier_;                                //!< The Identifier of the object
    172             Context* context_;                                      //!< The object's context
    173169            std::set<const Identifier*>* parents_;                  //!< List of all parents of the object
    174170            MetaObjectList* metaList_;                              //!< MetaObjectList, containing all ObjectLists and ObjectListElements the object is registered in
Note: See TracChangeset for help on using the changeset viewer.