TuttleOFX
1
|
00001 #include "OfxhKeyframeParam.hpp" 00002 00003 #include <boost/throw_exception.hpp> 00004 00005 namespace tuttle { 00006 namespace host { 00007 namespace ofx { 00008 namespace attribute { 00009 00010 void OfxhKeyframeParam::getNumKeys( unsigned int& outNumKeys ) const OFX_EXCEPTION_SPEC 00011 { 00012 BOOST_THROW_EXCEPTION( OfxhException( kOfxStatErrMissingHostFeature ) ); 00013 } 00014 00015 void OfxhKeyframeParam::getKeyTime( const int nth, OfxTime& outTime ) const OFX_EXCEPTION_SPEC 00016 { 00017 BOOST_THROW_EXCEPTION( OfxhException( kOfxStatErrMissingHostFeature ) ); 00018 } 00019 00020 void OfxhKeyframeParam::getKeyIndex( const OfxTime time, const int direction, int& outIndex ) const OFX_EXCEPTION_SPEC 00021 { 00022 BOOST_THROW_EXCEPTION( OfxhException( kOfxStatErrMissingHostFeature ) ); 00023 } 00024 00025 void OfxhKeyframeParam::deleteKey( const OfxTime time ) OFX_EXCEPTION_SPEC 00026 { 00027 BOOST_THROW_EXCEPTION( OfxhException( kOfxStatErrMissingHostFeature ) ); 00028 } 00029 00030 void OfxhKeyframeParam::deleteAllKeys() OFX_EXCEPTION_SPEC 00031 { 00032 BOOST_THROW_EXCEPTION( OfxhException( kOfxStatErrMissingHostFeature ) ); 00033 } 00034 00035 } 00036 } 00037 } 00038 } 00039