src: Mark symbols to be exported where needed
[quassel.git] / src / common / ctcpevent.h
index 54e26ec..1f0635b 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2013 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  *
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef CTCPEVENT_H
-#define CTCPEVENT_H
+#pragma once
+
+#include "common-export.h"
 
 #include "ircevent.h"
 
 #include <QUuid>
 
-class CtcpEvent : public IrcEvent
+class COMMON_EXPORT CtcpEvent : public IrcEvent
 {
 public:
     enum CtcpType {
@@ -90,6 +91,3 @@ private:
     QString _target, _param, _reply;
     QUuid _uuid;
 };
-
-
-#endif