12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #pragma once
- #ifndef SNAKE_SDL_HXX
- #define SNAKE_SDL_HXX
- #include <SDL.h>
- #include <cstdint>
- #include <source_location>
- #include <stdexcept>
- #include <string_view>
- #include <boost/noncopyable.hpp>
- class SDLError final : public std::runtime_error {
- public:
- explicit SDLError(
- std::string_view message,
- std::source_location location = std::source_location::current()
- );
- };
- class SDL final : private boost::noncopyable {
- public:
- explicit SDL(std::uint32_t flags = SDL_INIT_EVERYTHING);
- ~SDL() noexcept;
- static SDL& instance() noexcept;
- static SDL& require(std::uint32_t flags) noexcept;
- private:
- static SDL* instance_;
- };
- #endif
|