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