aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/size.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/size.h
parentfc9458dc83858ad76a5d589c3cd787ef5a1d5d16 (diff)
Added visibility rules to libsample.
Diffstat (limited to 'tests/libsample/size.h')
-rw-r--r--tests/libsample/size.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/libsample/size.h b/tests/libsample/size.h
index 504d711c6..cc9da4f2e 100644
--- a/tests/libsample/size.h
+++ b/tests/libsample/size.h
@@ -35,7 +35,9 @@
#ifndef SIZE_H
#define SIZE_H
-class Size
+#include "libsamplemacros.h"
+
+class LIBSAMPLE_API Size
{
public:
Size(double width = 0.0, double height = 0.0) : m_width(width), m_height(height) {}