趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Sdl_mixer_initializer.h
Go to the documentation of this file.
1 #ifndef HRK_MIXER_INITIALIZER_H
2 #define HRK_MIXER_INITIALIZER_H
3 
9 #include <memory>
10 
11 
12 namespace hrk
13 {
15  {
16  public:
19 
20  const char* what() const;
21 
23  bool initialize();
24 
25  bool is_initialized() const;
26 
27  void terminate();
28 
29  private:
31  Sdl_mixer_initializer& operator = (const Sdl_mixer_initializer& rhs);
32 
33  struct pImpl;
34  const std::auto_ptr<pImpl> pimpl;
35  };
36 }
37 
38 #endif
bool initialize()
システムの初期化
Definition: Sdl_mixer_initializer.cpp:77
Definition: Sdl_mixer_initializer.h:14