X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;fp=src%2Fcore%2Fcoreignorelistmanager.h;h=9576c1b0c30526fc707e07f2dd1c3826cf6d387d;hp=0000000000000000000000000000000000000000;hb=27302bba72a29977e81b9a0b2d8cde3a62ebc818;hpb=87bf901ae6387bc58e670a3adf88ffd7d465a281 diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h new file mode 100644 index 00000000..9576c1b0 --- /dev/null +++ b/src/core/coreignorelistmanager.h @@ -0,0 +1,42 @@ +/*************************************************************************** + * Copyright (C) 2005-09 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * 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. * + ***************************************************************************/ + +#ifndef COREIGNORELISTMANAGER_H +#define COREIGNORELISTMANAGER_H + +#include "ignorelistmanager.h" + +class CoreSession; + +class CoreIgnoreListManager : public IgnoreListManager { + Q_OBJECT + +public: + explicit CoreIgnoreListManager(CoreSession *parent); + ~CoreIgnoreListManager(); + + inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } + +//private: +// void loadDefaults(); + +}; + +#endif //COREIGNORELISTMANAGER_H