diff options
author | Hugo Lima <hugo.lima@openbossa.org> | 2009-11-23 21:18:29 -0200 |
---|---|---|
committer | Hugo Lima <hugo.lima@openbossa.org> | 2009-11-23 22:39:54 -0200 |
commit | 982db27e691d4df0276b7e9fbfa471f53c8647a3 (patch) | |
tree | 2be4f01884dad561e171192445be88b60da031ab /tests/libsample/collector.h | |
parent | fc9458dc83858ad76a5d589c3cd787ef5a1d5d16 (diff) | |
download | shiboken-982db27e691d4df0276b7e9fbfa471f53c8647a3.tar.gz shiboken-982db27e691d4df0276b7e9fbfa471f53c8647a3.tar.xz shiboken-982db27e691d4df0276b7e9fbfa471f53c8647a3.zip |
Added visibility rules to libsample.
Diffstat (limited to 'tests/libsample/collector.h')
-rw-r--r-- | tests/libsample/collector.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/libsample/collector.h b/tests/libsample/collector.h index 1b47c5b8..68d7f536 100644 --- a/tests/libsample/collector.h +++ b/tests/libsample/collector.h @@ -36,8 +36,9 @@ #define COLLECTOR_H #include <list> +#include "libsamplemacros.h" -class Collector +class LIBSAMPLE_API Collector { public: Collector() {} @@ -59,7 +60,7 @@ private: }; /* Helper for testing external operators */ -class IntWrapper +class LIBSAMPLE_API IntWrapper { public: IntWrapper(int x=0):value(x){} @@ -67,7 +68,7 @@ public: int value; }; -Collector &operator<<(Collector&, const IntWrapper&); +LIBSAMPLE_API Collector &operator<<(Collector&, const IntWrapper&); #endif // COLLECTOR_H |