summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_channel_configuration.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2012-01-28 15:05:53 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2012-01-28 15:05:53 +0000
commitab8cea1d7c19fddc6b81a6ba4a303a00e4fdd93c (patch)
treeae02bf18efc30dcd7af7782ec434ac73b0641ddf /libs/ardour/ardour/export_channel_configuration.h
parentaaf418bd6fe178eea0c67e65693536b07fcf5932 (diff)
Store Region export state in instant.xml (fixes #3935)
git-svn-id: svn://localhost/ardour2/branches/3.0@11376 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/export_channel_configuration.h')
-rw-r--r--libs/ardour/ardour/export_channel_configuration.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/export_channel_configuration.h b/libs/ardour/ardour/export_channel_configuration.h
index d84638ca85..a950cecc65 100644
--- a/libs/ardour/ardour/export_channel_configuration.h
+++ b/libs/ardour/ardour/export_channel_configuration.h
@@ -68,6 +68,9 @@ class ExportChannelConfiguration : public boost::enable_shared_from_this<ExportC
void set_name (std::string name) { _name = name; }
void set_split (bool value) { split = value; }
+ RegionExportChannelFactory::Type region_processing_type() const { return region_type; }
+ void set_region_processing_type(RegionExportChannelFactory::Type type) { region_type = type; }
+
bool get_split () const { return split; }
uint32_t get_n_chans () const { return channels.size(); }
@@ -88,6 +91,7 @@ class ExportChannelConfiguration : public boost::enable_shared_from_this<ExportC
ChannelList channels;
bool split; // Split to mono files
std::string _name;
+ RegionExportChannelFactory::Type region_type;
};
} // namespace ARDOUR