TuttleOFX
1
|
00001 #ifndef _TUTTLE_HOST_OFX_PARAM_PARAMCUSTOM_HPP_ 00002 #define _TUTTLE_HOST_OFX_PARAM_PARAMCUSTOM_HPP_ 00003 00004 #include "OfxhParam.hpp" 00005 #include "OfxhParamDescriptor.hpp" 00006 #include "OfxhParamSet.hpp" 00007 #include "OfxhKeyframeParam.hpp" 00008 00009 #include "OfxhParamString.hpp" /// @todo tuttle: custom parameter support... 00010 00011 namespace tuttle { 00012 namespace host { 00013 namespace ofx { 00014 namespace attribute { 00015 00016 class OfxhParamCustom 00017 : public OfxhParamString 00018 { 00019 public: 00020 OfxhParamCustom( const OfxhParamDescriptor& descriptor, const std::string& name, OfxhParamSet& setInstance ) : OfxhParamString( descriptor, name, setInstance ) {} 00021 }; 00022 00023 } 00024 } 00025 } 00026 } 00027 00028 #endif 00029