overte/interface/external/fervor/fvplatform.h

18 lines
260 B
C++
Executable file

#ifndef FVPLATFORM_H
#define FVPLATFORM_H
#include <QObject>
class FvPlatform : public QObject
{
Q_OBJECT
public:
static bool CurrentlyRunningOnPlatform(QString platform);
private:
explicit FvPlatform(QObject *parent = 0);
};
#endif // FVPLATFORM_H