Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9607 for code/branches/core6


Ignore:
Timestamp:
Mar 30, 2013, 9:38:52 PM (11 years ago)
Author:
landauf
Message:

no need to inherit virtually from OrxonoxClass anymore

Location:
code/branches/core6
Files:
4 edited

Legend:

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

    r9563 r9607  
    6060
    6161    /// The BaseObject is the parent of all classes representing an instance in the game.
    62     class _CoreExport BaseObject : virtual public OrxonoxClass
     62    class _CoreExport BaseObject : public OrxonoxClass
    6363    {
    6464        template <class T> friend class XMLPortClassParamContainer;
  • code/branches/core6/src/libraries/core/class/OrxonoxClass.h

    r9585 r9607  
    5050    /**
    5151        @brief This is the class from which all objects of the game-logic (not the engine) are derived from.
    52 
    53         The BaseObject and other classes are derived with @c virtual @c public @c OrxonoxClass from OrxonoxClass.
    5452    */
    5553    class _CoreExport OrxonoxClass : virtual public Configurable, virtual public Destroyable
  • code/branches/core6/src/libraries/tools/Timer.h

    r9563 r9607  
    102102        on the game time.
    103103    */
    104     class _ToolsExport Timer : virtual public OrxonoxClass
     104    class _ToolsExport Timer : public OrxonoxClass
    105105    {
    106106        public:
  • code/branches/core6/test/core/object/IteratorTest.cc

    r9605 r9607  
    1111    namespace
    1212    {
    13         class TestInterface : public OrxonoxInterface
     13        class TestInterface : virtual public OrxonoxInterface
    1414        {
    1515            public:
Note: See TracChangeset for help on using the changeset viewer.