TuttleOFX  1
TuttleOFX/libraries/tuttle/src/tuttle/host/attribute/ParamInteger.hpp
Go to the documentation of this file.
00001 #ifndef _TUTTLE_HOST_CORE_ATTRIBUTE_PARAMINTEGER_HPP_
00002 #define _TUTTLE_HOST_CORE_ATTRIBUTE_PARAMINTEGER_HPP_
00003 
00004 /* Most of the implementation is in the AnimatedParam template */
00005 #include "AnimatedParamType.hpp"
00006 
00007 namespace tuttle {
00008 namespace host {
00009 namespace attribute {
00010 
00011 class ParamInteger :
00012         public AnimatedParamInteger
00013 {
00014 public:
00015         ParamInteger( INode& effect, const std::string& name, const ofx::attribute::OfxhParamDescriptor& descriptor, const std::size_t index = 0 );
00016 
00017         int getDefault() const;
00018 };
00019 
00020 }
00021 }
00022 }
00023 
00024 #endif