1 /*
2     SPDX-License-Identifier: GPL-2.0-or-later
3 
4     SPDX-FileCopyrightText: 2002 Dario Abatianni <eisfuchs@tigress.com>
5 */
6 
7 #include "ignore.h"
8 
9 
Ignore(const QString & newName,int newFlags)10 Ignore::Ignore(const QString &newName,int newFlags)
11 {
12     setFlags(newFlags);
13     setName(newName);
14 }
15 
~Ignore()16 Ignore::~Ignore()
17 {
18 }
19 
setName(const QString & newName)20 void Ignore::setName(const QString &newName) { name=newName; }
setFlags(int newFlags)21 void Ignore::setFlags(int newFlags)   { flags=newFlags; }
getName() const22 QString Ignore::getName() const       { return name; }
getFlags() const23 int Ignore::getFlags() const          { return flags; }
24