summaryrefslogtreecommitdiff
path: root/cpp/src/tests/Statistics.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-04-07 19:59:20 +0000
committerAlan Conway <aconway@apache.org>2010-04-07 19:59:20 +0000
commit78df5d55bc32a2dbd94b259f1c843b259e745c47 (patch)
tree9e7f9104db64152f39b060beb508cbd70bcfa7b5 /cpp/src/tests/Statistics.h
parentdb10ca2521cff96eae94d11a8acb51e8173aba3c (diff)
downloadqpid-python-78df5d55bc32a2dbd94b259f1c843b259e745c47.tar.gz
Fix compiler warnings "virtual function but no virtual destructor".
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@931660 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/Statistics.h')
-rw-r--r--cpp/src/tests/Statistics.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/tests/Statistics.h b/cpp/src/tests/Statistics.h
index 5c5b21c49c..def37b7424 100644
--- a/cpp/src/tests/Statistics.h
+++ b/cpp/src/tests/Statistics.h
@@ -38,6 +38,7 @@ namespace tests {
class Statistic {
public:
+ virtual ~Statistic();
virtual void message(const messaging::Message&) = 0;
virtual void report(std::ostream&) const = 0;
virtual void header(std::ostream&) const = 0;
@@ -72,6 +73,8 @@ class ThroughputAndLatency : public Throughput {
/** Report batch and overall statistics */
class ReporterBase {
public:
+ virtual ~ReporterBase();
+
/** Count message in the statistics */
void message(const messaging::Message& m);