aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/objecttype.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2009-11-23 21:18:29 -0200
committerHugo Lima <hugo.lima@openbossa.org>2009-11-23 22:39:54 -0200
commit982db27e691d4df0276b7e9fbfa471f53c8647a3 (patch)
tree2be4f01884dad561e171192445be88b60da031ab /tests/libsample/objecttype.h
parentfc9458dc83858ad76a5d589c3cd787ef5a1d5d16 (diff)
Added visibility rules to libsample.
Diffstat (limited to 'tests/libsample/objecttype.h')
-rw-r--r--tests/libsample/objecttype.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/libsample/objecttype.h b/tests/libsample/objecttype.h
index f75bbeb35..eac12fd79 100644
--- a/tests/libsample/objecttype.h
+++ b/tests/libsample/objecttype.h
@@ -38,7 +38,9 @@
#include <list>
#include "str.h"
-struct Event
+#include "libsamplemacros.h"
+
+struct LIBSAMPLE_API Event
{
enum EventType {
NO_EVENT,
@@ -52,7 +54,7 @@ private:
EventType m_eventType;
};
-class ObjectType
+class LIBSAMPLE_API ObjectType
{
public:
typedef std::list<ObjectType*> ObjectTypeList;