Develop and Download Open Source Software

Browse Subversion Repository

Contents of /sound/MixerInit.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 217 - (show annotations) (download) (as text)
Mon Jan 28 12:42:32 2008 UTC (16 years, 4 months ago) by satofumi
File MIME type: text/x-chdr
File size: 557 byte(s)
sound/SoundEffectManager.cpp is implemented.
1 #ifndef MIXIER_INIT_H
2 #define MIXIER_INIT_H
3
4 /*!
5 \file
6 \brief SDL_mixer の初期化クラス
7
8 \author Satofumi KAMIMURA
9
10 $Id$
11 */
12
13 #include <memory>
14
15
16 namespace beego {
17 /*!
18 \brief SDL_mixer の初期化クラス
19 */
20 class MixerInit {
21 MixerInit(const MixerInit& rhs);
22 MixerInit& operator = (const MixerInit& rhs);
23
24 struct pImpl;
25 const std::auto_ptr<pImpl> pimpl;
26
27 protected:
28 MixerInit(void);
29 ~MixerInit(void);
30
31 bool isInitialized(void);
32
33 public:
34 enum {
35 ChannelNum = 8,
36 };
37 };
38 };
39
40 #endif /* !MIXIER_INIT_H */

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26