overte/interface/external/fervor/fvplatform.h
2013-07-24 11:29:12 -07:00

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