X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.h;h=3efaf589cf72d3e5f0e94a93253b40cccc90f9b4;hp=36c1b47f3adb81683319d3ae3efa54140ecaec0c;hb=47b54cd3ad35201ff2ab9ef6bfdba83fc086558d;hpb=92fc8c5b119111a35ab8423c3cbde5b2a022badf diff --git a/src/client/clientignorelistmanager.h b/src/client/clientignorelistmanager.h index 36c1b47f..3efaf589 100644 --- a/src/client/clientignorelistmanager.h +++ b/src/client/clientignorelistmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 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 * @@ -22,28 +22,29 @@ #include "client-export.h" -#include "ignorelistmanager.h" #include +#include "ignorelistmanager.h" + class CLIENT_EXPORT ClientIgnoreListManager : public IgnoreListManager { Q_OBJECT public: - explicit ClientIgnoreListManager(QObject *parent = 0); + explicit ClientIgnoreListManager(QObject* parent = nullptr); //! Fetch all matching ignore rules for a given hostmask /** \param hostmask The hostmask of the user - * \param network The network name - * \param channel The channel name - * \return Returns a QMap with the rule as key and a bool, representing if the rule is enabled or not, as value - */ - QMap matchingRulesForHostmask(const QString &hostmask, const QString &network, const QString &channel) const; + * \param network The network name + * \param channel The channel name + * \return Returns a QMap with the rule as key and a bool, representing if the rule is enabled or not, as value + */ + QMap matchingRulesForHostmask(const QString& hostmask, const QString& network, const QString& channel) const; signals: void ignoreListChanged(); private: // matches an ignore rule against a given string - bool pureMatch(const IgnoreListItem &item, const QString &string) const; + bool pureMatch(const IgnoreListItem& item, const QString& string) const; };