aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libother/othermultiplederived.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libother/othermultiplederived.h')
-rw-r--r--tests/libother/othermultiplederived.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/libother/othermultiplederived.h b/tests/libother/othermultiplederived.h
index cefc72561..33260b6ec 100644
--- a/tests/libother/othermultiplederived.h
+++ b/tests/libother/othermultiplederived.h
@@ -37,14 +37,16 @@
#include "libothermacros.h"
#include "multiple_derived.h"
+#include "virtualmethods.h"
class ObjectType;
-class OtherMultipleDerived : public MDerived1
+class LIBOTHER_API OtherMultipleDerived : public MDerived1
{
public:
// this will use CppCopier from other module (bug#142)
- inline VirtualMethods returnUselessClass() { return VirtualMethods(); }
+ VirtualMethods returnUselessClass();
+ static Base1* createObject(const std::string& objName);
};
#endif