Merge branch 'master' into cairocanvas
[ardour.git] / libs / ardour / ardour / buffer.h
index 4570a7a66330b1ceddbbcae46b2bbca86eb17396..d6f333a5a127495fc4879f5364ccb78c14fde29b 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <boost/utility.hpp>
 
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
 #include "ardour/data_type.h"
 
@@ -38,7 +39,7 @@ namespace ARDOUR {
  *
  * To actually read/write buffer contents, use the appropriate derived class.
  */
-class Buffer : public boost::noncopyable
+class LIBARDOUR_API Buffer : public boost::noncopyable
 {
 public:
        virtual ~Buffer() {}
@@ -61,7 +62,6 @@ public:
        DataType type() const { return _type; }
 
        bool silent() const { return _silent; }
-       void set_is_silent(bool yn) { _silent = yn; }
 
        /** Reallocate the buffer used internally to handle at least @a size_t units of data.
         *