summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/debuggable.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-17 15:37:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-17 15:37:11 -0400
commita2d55d088ad0d3da829fd94151ec9adc2b19cf60 (patch)
tree0864b95ec009a6e7dc054caaceb88ff2d062cad0 /libs/audiographer/audiographer/debuggable.h
parent5b2a5d77b8160c745553eb85c47a211067eea90d (diff)
add export control with -fvisibility=hidden to audiographer
Diffstat (limited to 'libs/audiographer/audiographer/debuggable.h')
-rw-r--r--libs/audiographer/audiographer/debuggable.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/audiographer/audiographer/debuggable.h b/libs/audiographer/audiographer/debuggable.h
index 79e0f80dd3..fc03d1e68d 100644
--- a/libs/audiographer/audiographer/debuggable.h
+++ b/libs/audiographer/audiographer/debuggable.h
@@ -7,11 +7,13 @@
#include <iostream>
+#include "audiographer/visibility.h"
+
namespace AudioGrapher
{
/// Compile time defined debug level
-enum DebugLevel
+enum LIBAUDIOGRAPHER_API DebugLevel
{
DebugNone, ///< Disabled
DebugObject, ///< Object level stuff, ctors, initalizers etc.
@@ -36,7 +38,7 @@ enum DebugLevel
* logical and (short-circuiting).
*/
template<DebugLevel L = DEFAULT_DEBUG_LEVEL>
-class Debuggable
+class LIBAUDIOGRAPHER_API Debuggable
{
protected:
Debuggable(std::ostream & debug_stream = std::cerr)