2017-05-13 11:03:46 +02:00
|
|
|
#ifndef PLATFORMBACKEND_HPP
|
|
|
|
#define PLATFORMBACKEND_HPP
|
2017-07-05 12:05:55 +02:00
|
|
|
#include <QtGlobal>
|
2017-05-13 11:03:46 +02:00
|
|
|
|
2017-07-05 12:05:55 +02:00
|
|
|
#ifdef Q_OS_MACOS
|
2017-05-13 11:03:46 +02:00
|
|
|
#include <platformspecifics/mac/macbackend.hpp>
|
|
|
|
#endif
|
2017-07-05 12:05:55 +02:00
|
|
|
#ifdef Q_OS_WIN
|
2017-05-13 11:03:46 +02:00
|
|
|
#include <platformspecifics/u32/u32backend.hpp>
|
|
|
|
#endif
|
2017-07-05 12:05:55 +02:00
|
|
|
#ifdef Q_OS_UNIX
|
2017-05-13 11:03:46 +02:00
|
|
|
#include <platformspecifics/x11/x11backend.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // PLATFORMBACKEND_HPP
|