KShare/platformbackend.hpp

15 lines
300 B
C++
Raw Normal View History

2017-05-13 11:03:46 +02:00
#ifndef PLATFORMBACKEND_HPP
#define PLATFORMBACKEND_HPP
#ifdef __APPLE__
#include <platformspecifics/mac/macbackend.hpp>
#endif
#ifdef _WIN32
#include <platformspecifics/u32/u32backend.hpp>
#endif
#ifdef __unix__
#include <platformspecifics/x11/x11backend.hpp>
#endif
#endif // PLATFORMBACKEND_HPP