#ifndef XNA_PLATFORM_HPP #define XNA_PLATFORM_HPP #include namespace xna { template struct PlatformImplementation { virtual ~PlatformImplementation() {} std::unique_ptr Implementation; }; } #endif