Changeset 988 for branches/Carsten_PtrWork/Source/System/FieldContainer/Base/OSGFieldContainerType.h
- Timestamp:
- 10/24/07 19:30:30 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/FieldContainer/Base/OSGFieldContainerType.h
r783 r988 57 57 */ 58 58 59 typedef FieldContainerPtr (*Proto typeCreateF)(void);59 typedef FieldContainerPtr (*ProtoContainerCreateF)(void); 60 60 61 61 /*! \ingroup GrpSystemFieldContainer … … 86 86 const Char8 *szGroupName = NULL, 87 87 const UInt32 uiNameSpace = 0, 88 Proto typeCreateFfPrototypeCreate = NULL,88 ProtoContainerCreateF fPrototypeCreate = NULL, 89 89 InitContainerF fInitMethod = NULL, 90 90 InitalInsertDescFunc descInsertFunc = NULL, … … 197 197 /*! \{ */ 198 198 199 BaseType _baseType;200 201 FieldContainerPtr _pPrototype;202 Proto typeCreateF_fPrototypeCreate;203 204 InitContainerF _fInitMethod;205 206 std::string _fcdXML; /*!< The raw xml text of the fcd describing this type. */207 std::string _typeDoc; /*!< The documentation string for this type. */199 BaseType _baseType; 200 201 FieldContainerPtr _pPrototype; 202 ProtoContainerCreateF _fPrototypeCreate; 203 204 InitContainerF _fInitMethod; 205 206 std::string _fcdXML; /*!< The raw xml text of the fcd describing this type. */ 207 std::string _typeDoc; /*!< The documentation string for this type. */ 208 208 209 209 /*! \} */
