prepare region RMS (loudness) normalization
[ardour.git] / libs / ardour / ardour / export_failed.h
index de00fba87e165cd6e8bbf00232d0f70cfa624e75..f1fd57ab4b600735b4fa8e41bb969abac4178e7e 100644 (file)
 
 #include <exception>
 #include <string>
-#include <pbd/error.h>
 
-#include "i18n.h"
-
-using namespace PBD;
+#include "ardour/libardour_visibility.h"
 
 namespace ARDOUR
 {
 
-class ExportFailed : public std::exception
+class LIBARDOUR_API ExportFailed : public std::exception
 {
   public:
-       ExportFailed (std::string const & reason, std::string const & description) :
-         reason (reason.c_str()),
-         description (description.c_str())
-       {
-               error << string_compose (_("Export failed: %1"), reason) << endmsg;
-       }
-       
+       ExportFailed (std::string const &);
        ~ExportFailed () throw() { }
-       
+
        const char* what() const throw()
        {
-               return description;
+               return reason;
        }
-       
+
   private:
 
        const char * reason;
-       const char * description;
 
 };