TuttleOFX  1
ComputeOptions.cpp
Go to the documentation of this file.
00001 #include "ComputeOptions.hpp"
00002 
00003 #include <boost/lexical_cast.hpp>
00004 
00005 
00006 namespace tuttle {
00007 namespace host {
00008 
00009 TimeRange::TimeRange( const OfxRangeD& range, const int step )
00010         : _begin( boost::lexical_cast<int>(range.min) )
00011         , _end( boost::lexical_cast<int>(range.max) )
00012         , _step( step )
00013 {
00014 }
00015 
00016 }
00017 }