src: Yearly copyright bump
[quassel.git] / src / client / clientbufferviewmanager.h
index 17a10c8..c72098a 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-2020 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 CLIENTBUFFERVIEWMANAGER_H
-#define CLIENTBUFFERVIEWMANAGER_H
+#pragma once
+
+#include "client-export.h"
 
 #include "bufferviewmanager.h"
 
 class ClientBufferViewConfig;
 class BufferViewOverlay;
 
-class ClientBufferViewManager : public BufferViewManager
+class CLIENT_EXPORT ClientBufferViewManager : public BufferViewManager
 {
-    SYNCABLE_OBJECT
-        Q_OBJECT
+    Q_OBJECT
 
 public:
-    ClientBufferViewManager(SignalProxy *proxy, QObject *parent = 0);
+    ClientBufferViewManager(SignalProxy* proxy, QObject* parent = nullptr);
 
-    QList<ClientBufferViewConfig *> clientBufferViewConfigs() const;
-    ClientBufferViewConfig *clientBufferViewConfig(int bufferViewId) const;
+    QList<ClientBufferViewConfig*> clientBufferViewConfigs() const;
+    ClientBufferViewConfigclientBufferViewConfig(int bufferViewId) const;
 
 public slots:
-    virtual void setInitialized();
+    void setInitialized() override;
 
 protected:
-    virtual BufferViewConfig *bufferViewConfigFactory(int bufferViewConfigId);
+    BufferViewConfig* bufferViewConfigFactory(int bufferViewConfigId) override;
 };
-
-
-#endif //CLIENTBUFFERVIEWMANAGER_H