File indexing completed on 2024-04-28 04:38:24

0001 /*
0002     SPDX-FileCopyrightText: 2010 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-or-later
0005 */
0006 
0007 #ifndef CONFIGCONSTANTS_H
0008 #define CONFIGCONSTANTS_H
0009 
0010 class QString;
0011 
0012 namespace ConfigConstants
0013 {
0014     QString buildConfigPrefix();
0015     QString buildDirKey();
0016     QString currentConfigKey();
0017     QString toolGroupPrefix();
0018     QString toolArguments();
0019     QString toolExecutable();
0020     QString toolEnvironment();
0021     QString toolType();
0022     QString toolEnabled();
0023     QString projectPathPrefix();
0024     QString projectPathKey();
0025     QString customBuildSystemGroup();
0026     QString configTitleKey();
0027 }
0028 
0029 #endif