趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Sdl_initializer.h
Go to the documentation of this file.
1 #ifndef SDL_INITIALIZER_H
2 #define SDL_INITIALIZER_H
3 
9 #include <memory>
10 
11 
12 namespace hrk
13 {
16  {
17  protected:
19  ~Sdl_initializer();
20 
21  const char* what() const;
22 
24  bool is_initialized() const;
25 
26  private:
27  Sdl_initializer(const Sdl_initializer& rhs);
28  Sdl_initializer& operator = (const Sdl_initializer& rhs);
29 
30  struct pImpl;
31  const std::auto_ptr<pImpl> pimpl;
32  };
33 }
34 
35 #endif
SDL の初期化クラス
Definition: Sdl_initializer.h:15
bool is_initialized() const
初期化されているかを返す
Definition: Sdl_initializer.cpp:52