osg::osg::FieldDataTraits< Pnt4ld > Struct Template Reference
[Field Data Traits]

#include <OSGVecFieldDataType.h>

Inheritance diagram for osg::osg::FieldDataTraits< Pnt4ld >:

osg::FieldTraitsRecurseVecStore2Base< ValueTypeT > osg::FieldTraitsRecurseVecStoreBase< ValueTypeT > osg::FieldTraits

List of all members.

Public Types

enum  { StringConvertable }
enum  { bHasParent = 0x01 }
typedef FieldDataTraits< Pnt4ldSelf
enum  { bHasParent = 0x00 }
enum  { bHasParent = 0x00 }
typedef osgIF< uiTest==1,
const ValueTypeT, const
ValueTypeT & >::_IRet 
ArgumentType
enum  { ToStringConvertable = 0x01, FromStringConvertable = 0x02 }

Static Public Member Functions

static DataTypegetType (void)
static Char8getSName (void)
static Char8getMName (void)
static Pnt4ld getDefault (void)
static bool getFromString (Pnt4ld &outVal, const Char8 *&inVal)
static void putToString (const Pnt4ld &inVal, std::string &outStr)
static UInt32 getBinSize (const ValueTypeT &)
static UInt32 getBinSize (const ValueTypeT *, UInt32 uiNumObjects)
static void copyToBin (BinaryDataHandler &pMem, const ValueTypeT &oObject)
static void copyToBin (BinaryDataHandler &pMem, const ValueTypeT *pObjectStore, UInt32 uiNumObjects)
static void copyFromBin (BinaryDataHandler &pMem, ValueTypeT &oObject)
static void copyFromBin (BinaryDataHandler &pMem, ValueTypeT *pObjectStore, UInt32 uiNumObjects)
static const Char8getPName (void)

Static Public Attributes

static DataType _type
static const UInt32 uiTest = TypeTraits<ValueTypeT>::IsPOD == false


Detailed Description

template<>
struct osg::osg::FieldDataTraits< Pnt4ld >

Definition at line 2333 of file OSGVecFieldDataType.h.


Member Typedef Documentation

typedef FieldDataTraits<Pnt4ld> osg::osg::FieldDataTraits< Pnt4ld >::Self

Definition at line 2337 of file OSGVecFieldDataType.h.

template<class ValueTypeT>
typedef osgIF<uiTest == 1, const ValueTypeT , const ValueTypeT & >::_IRet osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::ArgumentType [inherited]

Definition at line 78 of file OSGVecFieldDataType.h.


Member Enumeration Documentation

anonymous enum

Enumerator:
StringConvertable 

Definition at line 2340 of file OSGVecFieldDataType.h.

02340                      { StringConvertable = Self::ToStringConvertable   | 
02341                                            Self::FromStringConvertable };

anonymous enum

Enumerator:
bHasParent 

Definition at line 2343 of file OSGVecFieldDataType.h.

02343 { bHasParent        = 0x01                        };

template<class ValueTypeT>
anonymous enum [inherited]

Enumerator:
bHasParent 

Definition at line 139 of file OSGVecFieldDataType.h.

00139 { bHasParent = 0x00 };

template<class ValueTypeT>
anonymous enum [inherited]

Enumerator:
bHasParent 

Definition at line 70 of file OSGVecFieldDataType.h.

00070 { bHasParent = 0x00 };

anonymous enum [inherited]

Enumerator:
ToStringConvertable 
FromStringConvertable 

Definition at line 69 of file OSGFieldDataType.h.

00070     {
00071         ToStringConvertable   = 0x01,
00072         FromStringConvertable = 0x02
00073     };


Member Function Documentation

static DataType& osg::osg::FieldDataTraits< Pnt4ld >::getType ( void   )  [inline, static]

Definition at line 2345 of file OSGVecFieldDataType.h.

02345 { return _type;               }

static Char8* osg::osg::FieldDataTraits< Pnt4ld >::getSName ( void   )  [inline, static]

Definition at line 2347 of file OSGVecFieldDataType.h.

02347 { return "SFPnt4ld";           }

static Char8* osg::osg::FieldDataTraits< Pnt4ld >::getMName ( void   )  [inline, static]

Definition at line 2348 of file OSGVecFieldDataType.h.

02348 { return "MFPnt4ld";           }

static Pnt4ld osg::osg::FieldDataTraits< Pnt4ld >::getDefault ( void   )  [inline, static]

Definition at line 2350 of file OSGVecFieldDataType.h.

02350 { return Pnt4ld();             }

static bool osg::osg::FieldDataTraits< Pnt4ld >::getFromString ( Pnt4ld outVal,
const Char8 *&  inVal 
) [inline, static]

Definition at line 2352 of file OSGVecFieldDataType.h.

References osg::PointInterface< ValueTypeT, StorageInterfaceT >::setValueFromCString().

02354     {
02355         outVal.setValueFromCString(inVal);
02356         
02357         return true;
02358     }

static void osg::osg::FieldDataTraits< Pnt4ld >::putToString ( const Pnt4ld inVal,
std::string &  outStr 
) [inline, static]

Definition at line 2360 of file OSGVecFieldDataType.h.

References osg::PointInterface< ValueTypeT, StorageInterfaceT >::getValues().

02362     {
02363         typedef TypeTraits<Pnt4ld::ValueType> TypeTrait;
02364         
02365         outStr.assign(TypeTrait::putToString((inVal.getValues())[0]));
02366         outStr.append("  ");
02367         outStr.append(TypeTrait::putToString((inVal.getValues())[1]));
02368         outStr.append("  ");
02369         outStr.append(TypeTrait::putToString((inVal.getValues())[2]));
02370         outStr.append("  ");
02371         outStr.append(TypeTrait::putToString((inVal.getValues())[3]));
02372    }

template<class ValueTypeT>
static UInt32 osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::getBinSize ( const ValueTypeT &   )  [inline, static, inherited]

Definition at line 86 of file OSGVecFieldDataType.h.

00087     {
00088         return sizeof(ValueTypeT);
00089     }

template<class ValueTypeT>
static UInt32 osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::getBinSize ( const ValueTypeT *  ,
UInt32  uiNumObjects 
) [inline, static, inherited]

Definition at line 91 of file OSGVecFieldDataType.h.

00093     {
00094         return sizeof(ValueTypeT) * uiNumObjects;
00095     }

template<class ValueTypeT>
static void osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::copyToBin ( BinaryDataHandler pMem,
const ValueTypeT &  oObject 
) [inline, static, inherited]

Definition at line 97 of file OSGVecFieldDataType.h.

00099     {
00100         pMem.putValues(&oObject[0], ValueTypeT::_iSize);
00101     }

template<class ValueTypeT>
static void osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::copyToBin ( BinaryDataHandler pMem,
const ValueTypeT *  pObjectStore,
UInt32  uiNumObjects 
) [inline, static, inherited]

Definition at line 103 of file OSGVecFieldDataType.h.

00106     {
00107         pMem.putValues(&pObjectStore[0][0], ValueTypeT::_iSize*uiNumObjects);
00108     }

template<class ValueTypeT>
static void osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::copyFromBin ( BinaryDataHandler pMem,
ValueTypeT &  oObject 
) [inline, static, inherited]

Definition at line 110 of file OSGVecFieldDataType.h.

00112     {
00113         pMem.getValues(&oObject[0], ValueTypeT::_iSize);
00114     }

template<class ValueTypeT>
static void osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::copyFromBin ( BinaryDataHandler pMem,
ValueTypeT *  pObjectStore,
UInt32  uiNumObjects 
) [inline, static, inherited]

Definition at line 116 of file OSGVecFieldDataType.h.

00119     {
00120         pMem.getValues(&pObjectStore[0][0], ValueTypeT::_iSize*uiNumObjects);
00121     }

static const Char8* osg::FieldTraits::getPName ( void   )  [inline, static, inherited]

Definition at line 75 of file OSGFieldDataType.h.

00075 { return "Field"; }


Member Data Documentation

DataType osg::osg::FieldDataTraits< Pnt4ld >::_type [static]

Definition at line 2336 of file OSGVecFieldDataType.h.

template<class ValueTypeT>
const UInt32 osg::FieldTraitsRecurseVecStoreBase< ValueTypeT >::uiTest = TypeTraits<ValueTypeT>::IsPOD == false [static, inherited]

Definition at line 73 of file OSGVecFieldDataType.h.


The documentation for this struct was generated from the following files:

Generated on Mon Mar 17 12:03:41 2008 for OpenSG by  doxygen 1.5.5