CWaveLoader.h
上传用户:snevogroup
上传日期:2008-06-06
资源大小:432k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef __CWAVLOADER_H
  2. #define __CWAVLOADER_H
  3. #include <e32base.h>
  4. #include "TSample.h"
  5. // Load only 8-bit mono wav sample
  6. class CWavLoader : public CBase
  7. {
  8. // Constuct and destruct
  9. public:
  10. static CWavLoader* NewL();
  11. static CWavLoader* NewLC();
  12. ~CWavLoader();
  13. private:
  14. CWavLoader();
  15. void ConstructL();
  16. ////////////////////////////////////////////////////////////////////////////////
  17. // Other Method
  18. public:
  19. TSample LoadL(const TFileName& aFileName);
  20. };
  21. #endif