src: Mark symbols to be exported where needed
[quassel.git] / src / uisupport / tabcompleter.h
index b10fe7c..9d58d44 100644 (file)
@@ -18,8 +18,9 @@
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef TABCOMPLETER_H_
-#define TABCOMPLETER_H_
+#pragma once
+
+#include "uisupport-export.h"
 
 #include <QPointer>
 #include <QString>
@@ -31,7 +32,7 @@ class MultiLineEdit;
 class IrcUser;
 class Network;
 
-class TabCompleter : public QObject
+class UISUPPORT_EXPORT TabCompleter : public QObject
 {
     Q_OBJECT
 
@@ -76,6 +77,3 @@ private:
 
     void buildCompletionList();
 };
-
-
-#endif