X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fardour%2Fexport_format_specification.h;h=2a62d792f00f44db0039b4468e45867c08e17a56;hb=c96ec968c7bb4b1d7c358f522a49b0685c022920;hp=768fbb3bb3add9aee136e5958d3e399f76eb6dcc;hpb=2a93f7a25e63c796745c4a34ebc13239382ba2df;p=ardour.git diff --git a/libs/ardour/ardour/export_format_specification.h b/libs/ardour/ardour/export_format_specification.h index 768fbb3bb3..2a62d792f0 100644 --- a/libs/ardour/ardour/export_format_specification.h +++ b/libs/ardour/ardour/export_format_specification.h @@ -25,6 +25,7 @@ #include "pbd/uuid.h" +#include "ardour/libardour_visibility.h" #include "ardour/types.h" #include "ardour/export_format_base.h" @@ -37,7 +38,7 @@ class ExportFormat; class ExportFormatCompatibility; class Session; -class ExportFormatSpecification : public ExportFormatBase { +class LIBARDOUR_API ExportFormatSpecification : public ExportFormatBase { private: @@ -95,7 +96,7 @@ class ExportFormatSpecification : public ExportFormatBase { void set_tag (bool tag_it) { _tag = tag_it; } void set_with_cue (bool yn) { _with_cue = yn; } void set_with_toc (bool yn) { _with_toc = yn; } - void set_upload (bool yn) { _upload = yn; } + void set_soundcloud_upload (bool yn) { _soundcloud_upload = yn; } void set_command (std::string command) { _command = command; } void set_silence_beginning (AnyTime const & value) { _silence_beginning = value; } @@ -126,7 +127,7 @@ class ExportFormatSpecification : public ExportFormatBase { float normalize_target () const { return _normalize_target; } bool with_toc() const { return _with_toc; } bool with_cue() const { return _with_cue; } - bool upload() const { return _upload; } + bool soundcloud_upload() const { return _soundcloud_upload; } std::string command() const { return _command; } bool tag () const { return _tag && supports_tagging; } @@ -177,7 +178,7 @@ class ExportFormatSpecification : public ExportFormatBase { float _normalize_target; bool _with_toc; bool _with_cue; - bool _upload; + bool _soundcloud_upload; std::string _command; /* serialization helpers */