TuttleOFX
1
|
00001 #include "ComputeOptions.hpp" 00002 00003 #include <boost/lexical_cast.hpp> 00004 00005 00006 namespace tuttle { 00007 namespace host { 00008 00009 IProgressHandle::~IProgressHandle() {} 00010 00011 TimeRange::TimeRange( const OfxRangeD& range, const int step ) 00012 : _begin( static_cast<int>(range.min) ) 00013 , _end( static_cast<int>(range.max) ) 00014 , _step( step ) 00015 { 00016 } 00017 00018 } 00019 }