1 /**
2  * KDiff3 - Text Diff And Merge Tool
3  *
4  * SPDX-FileCopyrightText: 2021 Michael Reeves <reeves.87@gmail.com>
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  *
7  */
8 
9 #ifndef CVSIGNORELIST_H
10 #define CVSIGNORELIST_H
11 
12 #include "fileaccess.h"
13 
14 #include "IgnoreList.h"
15 
16 #include <QString>
17 #include <QStringList>
18 
19 class CvsIgnoreList: public IgnoreList
20 {
21   private:
22     friend class CvsIgnoreListTest;
getVarName()23     inline const char* getVarName() const override { return "CVSIGNORE"; }
getIgnoreName()24     inline const QString getIgnoreName() const override { return QStringLiteral(".cvsignore"); }
25 };
26 
27 #endif /* CVSIGNORELIST_H */
28