X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.h;h=83574f97bf5f959f4fc2f2be08fcac3b7ec39714;hb=80950b87640acfb2a75902f8aabf3419da094bf4;hp=ae121aa518ecd816f40ee3164794dcc706f19ca4;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e;p=quassel.git diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h index ae121aa5..83574f97 100644 --- a/src/common/networkconfig.h +++ b/src/common/networkconfig.h @@ -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 * @@ -18,15 +18,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef NETWORKCONFIG_H_ -#define NETWORKCONFIG_H_ +#pragma once + +#include "common-export.h" #include "syncableobject.h" -class NetworkConfig : public SyncableObject +class COMMON_EXPORT NetworkConfig : public SyncableObject { - SYNCABLE_OBJECT Q_OBJECT + SYNCABLE_OBJECT Q_PROPERTY(bool pingTimeoutEnabled READ pingTimeoutEnabled WRITE setPingTimeoutEnabled) Q_PROPERTY(int pingInterval READ pingInterval WRITE setPingInterval) @@ -38,9 +39,7 @@ class NetworkConfig : public SyncableObject Q_PROPERTY(bool standardCtcp READ standardCtcp WRITE setStandardCtcp) public : - NetworkConfig(const QString &objectName = "GlobalNetworkConfig", QObject *parent = 0); - - inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; } + NetworkConfig(const QString &objectName = "GlobalNetworkConfig", QObject *parent = nullptr); public slots: inline bool pingTimeoutEnabled() const { return _pingTimeoutEnabled; } @@ -105,6 +104,3 @@ private: bool _standardCtcp; }; - - -#endif