COVISE Core
coConfigTools.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef COCONFIGTOOLS_H
9#define COCONFIGTOOLS_H
10
11#include <QHash>
12#include <QString>
13
15{
16 public:
17 static bool matchingAttributes(const QHash<QString, QString *> &attributes);
18 static bool matchingHost(const QString *host);
19 static bool matchingMaster(const QString *master);
20 static bool matchingArch(const QString *arch);
21 static bool matchingRank(const QString *rank);
22};
23#endif
Definition: coConfigTools.h:15
static bool matchingMaster(const QString *master)
Definition: coConfigTools.cpp:59
static bool matchingArch(const QString *arch)
Definition: coConfigTools.cpp:83
static bool matchingRank(const QString *rank)
Definition: coConfigTools.cpp:97
static bool matchingHost(const QString *host)
Definition: coConfigTools.cpp:35
static bool matchingAttributes(const QHash< QString, QString * > &attributes)
Definition: coConfigTools.cpp:7