src: Mark symbols to be exported where needed
[quassel.git] / src / client / abstractui.h
index 4f63b69..44467fc 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2012 by the Quassel Project                        *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef ABSTRACTUI_H
-#define ABSTRACTUI_H
+#pragma once
+
+#include "client-export.h"
 
 #include <QObject>
 #include <QVariantMap>
-//#include "message.h"
 
 class MessageFilter;
 class MessageModel;
@@ -33,7 +33,7 @@ class AbstractActionProvider;
 class QAction;
 class QMenu;
 
-class AbstractUi : public QObject
+class CLIENT_EXPORT AbstractUi : public QObject
 {
     Q_OBJECT
 
@@ -52,6 +52,3 @@ signals:
     void connectToCore(const QVariantMap &connInfo);
     void disconnectFromCore();
 };
-
-
-#endif