aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother/otherderived.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libother/otherderived.h')
-rw-r--r--tests/libother/otherderived.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/libother/otherderived.h b/tests/libother/otherderived.h
index e449e29af..994aaca66 100644
--- a/tests/libother/otherderived.h
+++ b/tests/libother/otherderived.h
@@ -35,8 +35,12 @@
#ifndef OTHERDERIVED_H
#define OTHERDERIVED_H
-#include <libsample/libsamplemacros.h>
-#include <libsample/abstract.h>
+#include "libsamplemacros.h"
+#include "abstract.h"
+#include "derived.h"
+
+class ObjectType;
+class Complex;
class LIBSAMPLE_API OtherDerived : public Abstract
{
@@ -46,6 +50,10 @@ public:
virtual void pureVirtual();
virtual void unpureVirtual();
+ void useObjectTypeFromOtherModule(ObjectType*) {}
+ void useValueTypeFromOtherModule(const Complex&) {}
+ void useEnumTypeFromOtherModule(OverloadedFuncEnum) {}
+
// factory method
static Abstract* createObject();