X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.h;h=85d1f561e271280ead52b71e44a68e3c88e36f70;hp=c1a0f907f50feba1ee8c094b5a12229bbbc00186;hb=92fc8c5b119111a35ab8423c3cbde5b2a022badf;hpb=1cb02004ee5973b89368bd84f234d4652794690d diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h index c1a0f907..85d1f561 100644 --- a/src/common/networkconfig.h +++ b/src/common/networkconfig.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 = 0); public slots: inline bool pingTimeoutEnabled() const { return _pingTimeoutEnabled; } @@ -105,6 +104,3 @@ private: bool _standardCtcp; }; - - -#endif