Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 7, 2007, 12:19:46 AM (17 years ago)
Author:
landauf
Message:

started to implement BaseIdentifier<class B> template

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchie/src/orxonox.cc

    r172 r176  
    123123        test4 = new A3();
    124124*/
    125 /*
     125
    126126        std::cout << "Test 5\n";
    127127        A1* test5_01 = new A1();
     
    144144        A3B2C2* test5_18 = new A3B2C2();
    145145
     146/*
    146147        OrxonoxClass* test5;
    147148        for (int i = 0; i <= 18; i++)
     
    434435*/
    435436
     437        std::cout << "Test 7\n";
     438        std::cout << "1\n";
     439        BaseIdentifier<A1B1> test7_01;
     440        test7_01 = Class(A1B1C1);
     441
     442        BaseIdentifier<A1B1> test7_02;
     443        test7_02 = Class(A1B1);
     444
     445//        std::cout << Identifier(test7_02).getName() << "\n";
     446
     447/*
     448        BaseIdentifier<A1B1> test7_03;
     449        test7_03 = Class(A1);
     450
     451        BaseIdentifier<A1B1> test7_04;
     452        test7_04 = Class(A1B2);
     453
     454        BaseIdentifier<A1B1> test7_05;
     455        test7_05 = Class(A2);
     456*/
     457        std::cout << "2\n";
     458
     459
    436460      }
    437461
Note: See TracChangeset for help on using the changeset viewer.