modernize: Prefer default member init over ctor init
[quassel.git] / src / common / bufferinfo.h
index 2956af6..e20ce9b 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 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 BUFFERINFO_H
-#define BUFFERINFO_H
+
+#pragma once
+
+#include "common-export.h"
 
 #include "types.h"
 
 class QString;
 class QDataStream;
 
-class BufferInfo
+class COMMON_EXPORT BufferInfo
 {
 public:
     enum Type {
@@ -58,14 +60,15 @@ public:
     void setGroupId(uint gid) { _groupId = gid; }
 
     QString bufferName() const;
+    bool acceptsRegularMessages() const;
 
     inline bool operator==(const BufferInfo &other) const { return _bufferId == other._bufferId; }
 
 private:
     BufferId _bufferId;
     NetworkId _netid;
-    Type _type;
-    uint _groupId;
+    Type _type{InvalidBuffer};
+    uint _groupId{0};
     QString _bufferName;
 
     friend uint qHash(const BufferInfo &);
@@ -82,5 +85,3 @@ Q_DECLARE_METATYPE(BufferInfo)
 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferInfo::ActivityLevel)
 
 uint qHash(const BufferInfo &);
-
-#endif