Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2257


Ignore:
Timestamp:
Nov 25, 2008, 1:14:56 AM (15 years ago)
Author:
landauf
Message:

missed some files

Location:
code/branches/objecthierarchy2/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy2/src/core/Super.h

    r2254 r2257  
    239239    #define SUPER_changedMainState(classname, functionname, ...) \
    240240        SUPER_NOARGS(classname, functionname)
     241
     242    #define SUPER_changedOwner(classname, functionname, ...) \
     243        SUPER_NOARGS(classname, functionname)
    241244    // (1/3) --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <--
    242245
     
    455458            ()
    456459        SUPER_FUNCTION_GLOBAL_DECLARATION_PART2;
     460
     461        SUPER_FUNCTION_GLOBAL_DECLARATION_PART1(7, changedOwner, false)
     462            ()
     463        SUPER_FUNCTION_GLOBAL_DECLARATION_PART2;
    457464        // (2/3) --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <--
    458465
     
    504511    SUPER_INTRUSIVE_DECLARATION(changedScale);
    505512    SUPER_INTRUSIVE_DECLARATION(changedMainState);
     513    SUPER_INTRUSIVE_DECLARATION(changedOwner);
    506514    // (3/3) --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <-- --> HERE <--
    507515
  • code/branches/objecthierarchy2/src/util/Exception.h

    r2171 r2257  
    8686               Note: Don't place this code in Exception c'tor because getTypeName() \
    8787               is still pure virtual at that time. */                               \
    88             COUT(4) << this->getFullDescription() << std::endl;                     \
     88            COUT(1) << this->getFullDescription() << std::endl;                     \
    8989        }                                                                           \
    9090                                                                                    \
    9191        ExceptionName##Exception(const std::string& description)                    \
    9292                  : Exception(description)                                          \
    93         { COUT(4) << this->getFullDescription() << std::endl; }                     \
     93        { COUT(1) << this->getFullDescription() << std::endl; }                     \
    9494                                                                                    \
    9595        ~ExceptionName##Exception() throw() { }                                     \
Note: See TracChangeset for help on using the changeset viewer.