Browse Subversion Repository
Contents of /common/SdlInit.h
Parent Directory
| Revision Log
Revision 191 -
( show annotations)
( download)
( as text)
Fri Jan 4 02:49:36 2008 UTC
(16 years, 3 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 441 byte(s)
using namespace beego
| 1 |
#ifndef SDL_INIT_H |
| 2 |
#define SDL_INIT_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief SDL の初期化クラス |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <memory> |
| 14 |
|
| 15 |
|
| 16 |
namespace beego { |
| 17 |
/*! |
| 18 |
\brief SDL の初期化クラス |
| 19 |
*/ |
| 20 |
class SdlInit { |
| 21 |
SdlInit(const SdlInit& rhs); |
| 22 |
SdlInit& operator = (const SdlInit& rhs); |
| 23 |
|
| 24 |
struct pImpl; |
| 25 |
const std::auto_ptr<pImpl> pimpl; |
| 26 |
|
| 27 |
protected: |
| 28 |
SdlInit(void); |
| 29 |
~SdlInit(void); |
| 30 |
}; |
| 31 |
}; |
| 32 |
|
| 33 |
#endif /* ! SDL_INIT_H */ |
|