X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fexport_timespan.h;h=d4631cbccc00731ba634191673c9ac94c5fc6874;hb=7c2302651559eda71833c291ddc17f4d590ad95a;hp=754335ba48f0a552971a5c2f8ba0a143060ab159;hpb=1745340c67d66d8dd92e5b3a377e935ed5eea973;p=ardour.git diff --git a/libs/ardour/ardour/export_timespan.h b/libs/ardour/ardour/export_timespan.h index 754335ba48..d4631cbccc 100644 --- a/libs/ardour/ardour/export_timespan.h +++ b/libs/ardour/ardour/export_timespan.h @@ -53,6 +53,9 @@ class LIBARDOUR_API ExportTimespan std::string range_id () const { return _range_id; } void set_range_id (std::string range_id) { _range_id = range_id; } + bool realtime () const { return _realtime; } + void set_realtime (bool rt) { _realtime = rt; } + void set_range (framepos_t start, framepos_t end); framecnt_t get_length () const { return end_frame - start_frame; } framepos_t get_start () const { return start_frame; } @@ -76,6 +79,7 @@ class LIBARDOUR_API ExportTimespan std::string _name; std::string _range_id; + bool _realtime; };