make route group master a real property.
[ardour.git] / libs / ardour / ardour / data_type.h
index b4129e26296f4b61a2a721f3c4ad1ee765d71d8a..bc59aebeb640e373264237faab496775c6f18d96 100644 (file)
@@ -24,6 +24,8 @@
 #include <stdint.h>
 #include <glib.h>
 
+#include "ardour/libardour_visibility.h"
+
 namespace ARDOUR {
 
 /** A type of Data Ardour is capable of processing.
@@ -32,7 +34,7 @@ namespace ARDOUR {
  * other type representations, simple comparison between then, etc.  This code
  * is deliberately 'ugly' so other code doesn't have to be.
  */
-class DataType
+class LIBARDOUR_API DataType
 {
 public:
        /** Numeric symbol for this DataType.
@@ -79,7 +81,7 @@ public:
                default:    return "unknown"; // reeeally shouldn't ever happen
                }
        }
-    
+
        const char* to_i18n_string () const;
 
        inline operator uint32_t() const { return (uint32_t)_symbol; }