mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 19:02:36 +02:00
18 lines
267 B
C++
Executable file
18 lines
267 B
C++
Executable file
#ifndef FVPLATFORM_H
|
|
#define FVPLATFORM_H
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
class FvPlatform : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static bool CurrentlyRunningOnPlatform(QString platform);
|
|
|
|
private:
|
|
explicit FvPlatform(QObject *parent = 0);
|
|
|
|
};
|
|
|
|
#endif // FVPLATFORM_H
|