mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 19:02:36 +02:00
19 lines
329 B
C++
Executable file
19 lines
329 B
C++
Executable file
#ifndef FVIGNOREDVERSIONS_H
|
|
#define FVIGNOREDVERSIONS_H
|
|
|
|
#include <QObject>
|
|
|
|
class FVIgnoredVersions : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static bool VersionIsIgnored(QString version);
|
|
static void IgnoreVersion(QString version);
|
|
|
|
private:
|
|
explicit FVIgnoredVersions(QObject *parent = 0);
|
|
|
|
};
|
|
|
|
#endif // FVIGNOREDVERSIONS_H
|