Browse Subversion Repository
Contents of /sound/SdlCdromInit.h
Parent Directory
| Revision Log
Revision 302 -
( show annotations)
( download)
( as text)
Tue Mar 25 22:35:24 2008 UTC
(16 years ago)
by satofumi
File MIME type: text/x-chdr
File size: 530 byte(s)
add CdromPlayer.cpp
| 1 |
#ifndef SDL_CDROM_INIT_H |
| 2 |
#define SDL_CDROM_INIT_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief SDL CDROM Ěúť |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <memory> |
| 14 |
|
| 15 |
|
| 16 |
namespace beego { |
| 17 |
/*! |
| 18 |
\brief SDL CDROM ĚúťNX |
| 19 |
*/ |
| 20 |
class SdlCdromInit { |
| 21 |
SdlCdromInit(const SdlCdromInit& rhs); |
| 22 |
SdlCdromInit& operator = (const SdlCdromInit& rhs); |
| 23 |
|
| 24 |
struct pImpl; |
| 25 |
const std::auto_ptr<pImpl> pimpl; |
| 26 |
|
| 27 |
protected: |
| 28 |
SdlCdromInit(void); |
| 29 |
~SdlCdromInit(void); |
| 30 |
|
| 31 |
bool isInitialized(void); |
| 32 |
}; |
| 33 |
}; |
| 34 |
|
| 35 |
#endif /* !SDL_CDROM_INIT_H */ |
|