|
Gaudi Framework, version v21r11 |
| Home | Generated: 30 Sep 2010 |
#include <PropertyTypeTraits.h>
Public Types | |
| typedef TYPE | Type |
| typedef const TYPE & | PRef |
| typedef TYPE * | PVal |
| typedef const TYPE * | CVal |
Static Public Member Functions | |
| static PVal | new_ () |
| some kind of default constructor | |
| static PVal | new_ (const Type &right) |
| some kind of copy constructor | |
| static void | dele (PVal right, const bool own) |
| "smart" destructor | |
| static PVal | copy (PVal *right, const bool own) |
| "smart" copy-constructor | |
| static void | assign (Type &v1, PRef v2) |
| assignment | |
| static bool | less (const Type &v1, const Type &v2) |
| comparison (needed for bounded verifier) | |
For implementation of SimpleProperty<TYPE> one needs:
For implementation of SimplePropertyRef<TYPE> one needs:
For all cases one needs to have valid functions:
Definition at line 46 of file PropertyTypeTraits.h.
| typedef TYPE Gaudi::Utils::PropertyTypeTraits< TYPE >::Type |
Definition at line 49 of file PropertyTypeTraits.h.
| typedef const TYPE& Gaudi::Utils::PropertyTypeTraits< TYPE >::PRef |
Definition at line 50 of file PropertyTypeTraits.h.
| typedef TYPE* Gaudi::Utils::PropertyTypeTraits< TYPE >::PVal |
Definition at line 51 of file PropertyTypeTraits.h.
| typedef const TYPE* Gaudi::Utils::PropertyTypeTraits< TYPE >::CVal |
Definition at line 52 of file PropertyTypeTraits.h.
| static PVal Gaudi::Utils::PropertyTypeTraits< TYPE >::new_ | ( | ) | [inline, static] |
some kind of default constructor
Definition at line 55 of file PropertyTypeTraits.h.
00055 { return new Type( ) ; }
| static PVal Gaudi::Utils::PropertyTypeTraits< TYPE >::new_ | ( | const Type & | right | ) | [inline, static] |
some kind of copy constructor
Definition at line 57 of file PropertyTypeTraits.h.
00057 { return new Type(right) ; }
| static void Gaudi::Utils::PropertyTypeTraits< TYPE >::dele | ( | PVal | right, | |
| const bool | own | |||
| ) | [inline, static] |
"smart" destructor
Definition at line 59 of file PropertyTypeTraits.h.
00060 { if ( own ) { delete right ; } }
| static PVal Gaudi::Utils::PropertyTypeTraits< TYPE >::copy | ( | PVal * | right, | |
| const bool | own | |||
| ) | [inline, static] |
| static void Gaudi::Utils::PropertyTypeTraits< TYPE >::assign | ( | Type & | v1, | |
| PRef | v2 | |||
| ) | [inline, static] |
| static bool Gaudi::Utils::PropertyTypeTraits< TYPE >::less | ( | const Type & | v1, | |
| const Type & | v2 | |||
| ) | [inline, static] |