- Timestamp:
- 10/20/07 18:11:52 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/Base/Field/OSGSysFieldTraits.h
r785 r976 82 82 DataType &getType (void); 83 83 84 static Char8 *getSName (void) { return "SFBool"; }85 static Char8 *getMName (void) { return "MFBool"; }84 static Char8 const *getSName (void) { return "SFBool"; } 85 static Char8 const *getMName (void) { return "MFBool"; } 86 86 87 87 static bool getDefault (void) { return false; } … … 149 149 DataType &getType (void); 150 150 151 static Char8 *getSName (void) { return "SFInt8"; }152 static Char8 *getMName (void) { return "MFInt8"; }151 static Char8 const *getSName (void) { return "SFInt8"; } 152 static Char8 const *getMName (void) { return "MFInt8"; } 153 153 154 154 static Int8 getDefault (void) { return 0; } … … 183 183 DataType &getType (void); 184 184 185 static Char8 *getSName (void) { return "SFUInt8"; }186 static Char8 *getMName (void) { return "MFUInt8"; }185 static Char8 const *getSName (void) { return "SFUInt8"; } 186 static Char8 const *getMName (void) { return "MFUInt8"; } 187 187 188 188 static UInt8 getDefault (void) { return 0; } … … 218 218 DataType &getType (void); 219 219 220 static Char8 *getSName (void) { return "SFInt16"; }221 static Char8 *getMName (void) { return "MFInt16"; }220 static Char8 const *getSName (void) { return "SFInt16"; } 221 static Char8 const *getMName (void) { return "MFInt16"; } 222 222 223 223 static Int16 getDefault (void) { return 0; } … … 253 253 DataType &getType (void); 254 254 255 static Char8 *getSName (void) { return "SFUInt16"; }256 static Char8 *getMName (void) { return "MFUInt16"; }255 static Char8 const *getSName (void) { return "SFUInt16"; } 256 static Char8 const *getMName (void) { return "MFUInt16"; } 257 257 258 258 static UInt16 getDefault (void) { return 0; } … … 288 288 DataType &getType (void); 289 289 290 static Char8 *getSName (void) { return "SFInt32"; }291 static Char8 *getMName (void) { return "MFInt32"; }290 static Char8 const *getSName (void) { return "SFInt32"; } 291 static Char8 const *getMName (void) { return "MFInt32"; } 292 292 293 293 static Int32 getDefault (void) { return 0; } … … 323 323 DataType &getType (void); 324 324 325 static Char8 *getSName (void) { return "SFUInt32"; }326 static Char8 *getMName (void) { return "MFUInt32"; }325 static Char8 const *getSName (void) { return "SFUInt32"; } 326 static Char8 const *getMName (void) { return "MFUInt32"; } 327 327 328 328 static UInt32 getDefault (void) { return 0; } … … 364 364 DataType &getType (void); 365 365 366 static Char8 *getSName (void) { return "SFInt64"; }367 static Char8 *getMName (void) { return "MFInt64"; }366 static Char8 const *getSName (void) { return "SFInt64"; } 367 static Char8 const *getMName (void) { return "MFInt64"; } 368 368 369 369 static Int64 getDefault (void) { return 0; } … … 398 398 DataType &getType (void); 399 399 400 static Char8 *getSName (void) { return "SFUInt64"; }401 static Char8 *getMName (void) { return "MFUInt64"; }400 static Char8 const *getSName (void) { return "SFUInt64"; } 401 static Char8 const *getMName (void) { return "MFUInt64"; } 402 402 403 403 static UInt64 getDefault (void) { return 0; } … … 432 432 DataType &getType (void); 433 433 434 static Char8 *getSName (void) { return "SFReal16"; }435 static Char8 *getMName (void) { return "MFReal16"; }434 static Char8 const *getSName (void) { return "SFReal16"; } 435 static Char8 const *getMName (void) { return "MFReal16"; } 436 436 437 437 static Real32 getDefault (void) { return 0.f; } … … 467 467 DataType &getType (void); 468 468 469 static Char8 *getSName (void) { return "SFReal32"; }470 static Char8 *getMName (void) { return "MFReal32"; }469 static Char8 const *getSName (void) { return "SFReal32"; } 470 static Char8 const *getMName (void) { return "MFReal32"; } 471 471 472 472 static Real32 getDefault (void) { return 0.f; } … … 502 502 DataType &getType (void); 503 503 504 static Char8 *getSName (void) { return "SFFixed32"; }505 static Char8 *getMName (void) { return "MFFixed32"; }504 static Char8 const *getSName (void) { return "SFFixed32"; } 505 static Char8 const *getMName (void) { return "MFFixed32"; } 506 506 507 507 static Fixed32 getDefault (void) { return Fixed32(0.f); } … … 536 536 DataType &getType (void); 537 537 538 static Char8 *getSName (void) { return "SFReal64"; }539 static Char8 *getMName (void) { return "MFReal64"; }538 static Char8 const *getSName (void) { return "SFReal64"; } 539 static Char8 const *getMName (void) { return "MFReal64"; } 540 540 541 541 static Real64 getDefault (void) { return 0.; } … … 573 573 DataType &getType (void); 574 574 575 static Char8 *getSName (void) { return "SFVoidP"; }576 static Char8 *getMName (void) { return "MFVoidP"; }575 static Char8 const *getSName (void) { return "SFVoidP"; } 576 static Char8 const *getMName (void) { return "MFVoidP"; } 577 577 578 578 static void *getDefault (void) { return NULL; }
