Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2008, 6:39:53 PM (16 years ago)
Author:
landauf
Message:
  • Changed the ClassManager/IdentifierDistributor: ClassIdentifiers are now saved with the name returned by typeid(class).name() because this is a simple way getting the name without creating an object (which might be impossible because of non-public constructors or abstract functions).
  • Changed some debug outputs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core/src/orxonox/objects/Test.h

    r790 r811  
    7474        public:
    7575            A1B2() { RegisterObject(A1B2); }
     76            virtual void test() = 0;
    7677    };
    7778
     
    116117        public:
    117118            A1B2C1() { RegisterObject(A1B2C1); }
     119            void test() { std::cout << "test!\n"; }
    118120    };
    119121
     
    158160    CreateFactory(A3);
    159161    CreateFactory(A1B1);
    160     CreateFactory(A1B2);
     162//    CreateFactory(A1B2);
    161163    CreateFactory(A2B1);
    162164    CreateFactory(A2B2);
Note: See TracChangeset for help on using the changeset viewer.