Show
Ignore:
Timestamp:
12/12/07 18:00:42 (9 months ago)
Author:
cneumann
Message:

added: generic interface
changed: factory functions return RefPtr?

The unittests don't pass right now, because of the change
to the factory functions, which leads to containers
being immediately destroyed as they are not assigned to
a RefPtr?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Carsten_PtrWork2/Source/Base/Field/OSGFieldType.inl

    r785 r1032  
    4545} 
    4646 
    47 inline 
    48 FieldType::Cardinality FieldType::getCardinality(void) const 
     47inline FieldType::Cardinality 
     48FieldType::getCardinality(void) const 
    4949{ 
    5050    return _cardinality; 
     51} 
     52 
     53inline FieldType::Category 
     54FieldType::getCategory(void) const 
     55{ 
     56    return _category; 
    5157} 
    5258