00001
00002
00003 #ifndef ASGTOOLS_TPROPERTY_H
00004 #define ASGTOOLS_TPROPERTY_H
00005
00006
00007 #include <string>
00008 #include <vector>
00009
00010
00011 #include "AsgTools/ToolHandle.h"
00012 #include "AsgTools/ToolHandleArray.h"
00013 #include "AsgTools/Property.h"
00014
00025 template< typename T >
00026 class TProperty : public Property {
00027
00028 public:
00030 TProperty( T& val, Type type );
00031
00033 const T* pointer() const;
00034
00036 virtual int setFrom( const Property& rhs );
00037
00038 virtual StatusCode getString (std::string& result) const;
00039
00040 virtual StatusCode setString (const std::string& value);
00041
00042 private:
00044 T* m_ptr;
00045
00046 };
00047
00050
00052 template<>
00053 int TProperty< float >::setFrom( const Property& rhs );
00054
00056
00059
00061 Property* createProperty( const bool& rval );
00062
00064 Property* createProperty( const int& rval );
00065
00067 Property* createProperty( const float& rval );
00068
00070 Property* createProperty( const double& rval );
00071
00073 Property* createProperty( const std::string& rval );
00074
00076 Property* createProperty( const std::vector< int >& rval );
00077
00079 Property* createProperty( const std::vector< float >& rval );
00080
00082 Property* createProperty( const std::vector< std::string >& rval );
00083
00085 template< typename T >
00086 Property* createProperty( const T& rval );
00087
00089
00090
00091 #include "AsgTools/TProperty.icc"
00092
00093 #endif // ASGTOOLS_TPROPERTY_H