From 0b9477279ac00c4d4cebdd25214a852ccb61a937 Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Mon, 2 Sep 2013 11:24:43 -0400 Subject: [PATCH] export HistoryType classes to allow testing --- src/History.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/History.h b/src/History.h index 833ef444..a85c7196 100644 --- a/src/History.h +++ b/src/History.h @@ -29,6 +29,8 @@ #include #include +#include "konsole_export.h" + // Konsole #include "Character.h" @@ -314,7 +316,7 @@ private: // History type ////////////////////////////////////////////////////////////////////// -class HistoryType +class KONSOLEPRIVATE_EXPORT HistoryType { public: HistoryType(); @@ -342,7 +344,7 @@ public: } }; -class HistoryTypeNone : public HistoryType +class KONSOLEPRIVATE_EXPORT HistoryTypeNone : public HistoryType { public: HistoryTypeNone(); @@ -353,7 +355,7 @@ public: virtual HistoryScroll* scroll(HistoryScroll *) const; }; -class HistoryTypeFile : public HistoryType +class KONSOLEPRIVATE_EXPORT HistoryTypeFile : public HistoryType { public: explicit HistoryTypeFile(const QString& fileName = QString()); @@ -367,7 +369,7 @@ protected: QString _fileName; }; -class CompactHistoryType : public HistoryType +class KONSOLEPRIVATE_EXPORT CompactHistoryType : public HistoryType { public: explicit CompactHistoryType(unsigned int size);