X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fardour%2Fexport_timespan.h;h=d4631cbccc00731ba634191673c9ac94c5fc6874;hb=a1b4f9b8abf2887b17bce05403ea7eab2421f26a;hp=754335ba48f0a552971a5c2f8ba0a143060ab159;hpb=9aacefc17010a889222425f97b99050171165038;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; };