?? soundthread.h
字號:
// SoundThread.h: interface for the CSoundThread class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SOUNDTHREAD_H__B1FEAAB0_CDE9_4573_9F17_E514CE862BF3__INCLUDED_)
#define AFX_SOUNDTHREAD_H__B1FEAAB0_CDE9_4573_9F17_E514CE862BF3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <e32base.h>
#include <e32std.h>
#include "MyToneClass.h"
class CSoundThread : public CBase
{
public:
static CSoundThread* NewL();
static CSoundThread* NewLC();
virtual ~CSoundThread();
private:
CSoundThread();
void ConstructL();
public:
private:
RThread* iThread;
CMyToneClass* iSound;
};
#endif // !defined(AFX_SOUNDTHREAD_H__B1FEAAB0_CDE9_4573_9F17_E514CE862BF3__INCLUDED_)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -