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 private:
00040 T* m_ptr;
00041
00042 };
00043
00046
00048 template<>
00049 int TProperty< float >::setFrom( const Property& rhs );
00050
00052
00055
00057 Property* createProperty( const bool& rval );
00058
00060 Property* createProperty( const int& rval );
00061
00063 Property* createProperty( const float& rval );
00064
00066 Property* createProperty( const double& rval );
00067
00069 Property* createProperty( const std::string& rval );
00070
00072 Property* createProperty( const std::vector< int >& rval );
00073
00075 Property* createProperty( const std::vector< float >& rval );
00076
00078 Property* createProperty( const std::vector< std::string >& rval );
00079
00081 template< typename T >
00082 Property* createProperty( const T& rval );
00083
00085
00086
00087 #include "AsgTools/TProperty.icc"
00088
00089 #endif // ASGTOOLS_TPROPERTY_H