summaryrefslogtreecommitdiffstats
path: root/logger/QsLogDest.h
diff options
context:
space:
mode:
Diffstat (limited to 'logger/QsLogDest.h')
-rw-r--r--logger/QsLogDest.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/logger/QsLogDest.h b/logger/QsLogDest.h
index 32f1a9d0..e7fcc045 100644
--- a/logger/QsLogDest.h
+++ b/logger/QsLogDest.h
@@ -26,6 +26,7 @@
#pragma once
#include <memory>
+
class QString;
namespace QsLogging
@@ -34,9 +35,7 @@ namespace QsLogging
class Destination
{
public:
- virtual ~Destination()
- {
- }
+ virtual ~Destination();
virtual void write(const QString &message) = 0;
};
typedef std::shared_ptr<Destination> DestinationPtr;