aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/tests/routablefactory/routablefactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'documentapi/src/tests/routablefactory/routablefactory.cpp')
-rw-r--r--documentapi/src/tests/routablefactory/routablefactory.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/documentapi/src/tests/routablefactory/routablefactory.cpp b/documentapi/src/tests/routablefactory/routablefactory.cpp
index a1b0050efd8..be8c8ad0c39 100644
--- a/documentapi/src/tests/routablefactory/routablefactory.cpp
+++ b/documentapi/src/tests/routablefactory/routablefactory.cpp
@@ -59,8 +59,12 @@ protected:
(void)buf;
return true;
}
+public:
+ ~MyMessageFactory() override;
};
+MyMessageFactory::~MyMessageFactory() = default;
+
class MyReplyFactory : public RoutableFactories60::DocumentReplyFactory {
protected:
DocumentReply::UP doDecode(document::ByteBuffer &buf) const override {
@@ -73,8 +77,12 @@ protected:
(void)buf;
return true;
}
+public:
+ ~MyReplyFactory() override;
};
+MyReplyFactory::~MyReplyFactory() = default;
+
///////////////////////////////////////////////////////////////////////////////
//
// Setup