?? cwaveloader.h
字號:
#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
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -