remove Glib::ustring from libardour; allow any characters except '/' and '\' in paths...
[ardour.git] / libs / ardour / ardour / export_channel_configuration.h
index e088aba2f072ccc4c42b6828e07f1328b312079f..932a74328ce330f85790f21164d618d981aaa91c 100644 (file)
@@ -22,7 +22,7 @@
 #define __ardour_export_channel_configuration_h__
 
 #include <list>
-#include <glibmm/ustring.h>
+#include <string>
 #include <boost/enable_shared_from_this.hpp>
 
 #include "ardour/export_channel.h"
@@ -62,8 +62,8 @@ class ExportChannelConfiguration : public boost::enable_shared_from_this<ExportC
        ChannelList const & get_channels () const { return channels; }
        bool all_channels_have_ports () const;
 
-       Glib::ustring name () const { return _name; }
-       void set_name (Glib::ustring name) { _name = name; }
+        std::string name () const { return _name; }
+       void set_name (std::string name) { _name = name; }
        void set_split (bool value) { split = value; }
 
        bool get_split () const { return split; }
@@ -82,7 +82,7 @@ class ExportChannelConfiguration : public boost::enable_shared_from_this<ExportC
 
        ChannelList     channels;
        bool            split; // Split to mono files
-       Glib::ustring  _name;
+        std::string  _name;
 };
 
 } // namespace ARDOUR