Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 11, 2013, 4:23:41 PM (11 years ago)
Author:
landauf
Message:

removed constructor arguments from ClassFactories. use the helper-function registerClass() to add the factory to the corresponding identifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core6/test/core/class/IdentifierSimpleClassHierarchyTest.cc

    • Property svn:eol-style set to native
    r9636 r9637  
    2424                virtual void SetUp()
    2525                {
    26                     new ClassFactory<Interface>("Interface");
    27                     new ClassFactory<BaseClass>("BaseClass");
    28                     new ClassFactory<RealClass>("RealClass");
     26                    registerClass("Interface", new ClassFactoryNoArgs<Interface>());
     27                    registerClass("BaseClass", new ClassFactoryNoArgs<BaseClass>());
     28                    registerClass("RealClass", new ClassFactoryNoArgs<RealClass>());
    2929                    IdentifierManager::createClassHierarchy();
    3030                }
Note: See TracChangeset for help on using the changeset viewer.