summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_profile_manager.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-16 01:35:43 +0200
committerRobin Gareus <robin@gareus.org>2016-07-16 02:14:27 +0200
commit9eaced4c9d2db5e080e5fa5228616917ccac211c (patch)
tree929d940e2780a8e99ffa8bea83c4f49f73cf7d4c /libs/ardour/ardour/export_profile_manager.h
parentf8a6213454c7a0a80114ffa01c8ce432b19f4617 (diff)
allow to query export profile type
Diffstat (limited to 'libs/ardour/ardour/export_profile_manager.h')
-rw-r--r--libs/ardour/ardour/export_profile_manager.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/ardour/export_profile_manager.h b/libs/ardour/ardour/export_profile_manager.h
index 2757795ff3..b0285f8ecc 100644
--- a/libs/ardour/ardour/export_profile_manager.h
+++ b/libs/ardour/ardour/export_profile_manager.h
@@ -65,6 +65,8 @@ class LIBARDOUR_API ExportProfileManager
void load_profile ();
void prepare_for_export ();
+ ExportType type () const { return _type; }
+
typedef std::list<ExportPresetPtr> PresetList;
PresetList const & get_presets () { return preset_list; }
@@ -79,7 +81,7 @@ class LIBARDOUR_API ExportProfileManager
typedef std::pair<PBD::UUID, std::string> FilePair;
typedef std::map<PBD::UUID, std::string> FileMap;
- ExportType type;
+ ExportType _type;
std::string xml_node_name;
HandlerPtr handler;
Session & session;