CWaveLoader.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:0k
- #ifndef __CWAVLOADER_H
- #define __CWAVLOADER_H
- #include <e32base.h>
- #include "TSample.h"
- // Load only 8-bit mono wav sample
- class CWavLoader : public CBase
- {
- // Constuct and destruct
- public:
- static CWavLoader* NewL();
- static CWavLoader* NewLC();
- ~CWavLoader();
- private:
- CWavLoader();
- void ConstructL();
- ////////////////////////////////////////////////////////////////////////////////
- // Other Method
- public:
- TSample LoadL(const TFileName& aFileName);
- };
- #endif