?? soundthread.cpp
字號:
// SoundThread.cpp: implementation of the CSoundThread class.
//
//////////////////////////////////////////////////////////////////////
#include "SoundThread.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CSoundThread* CSoundThread::NewL()
{
CSoundThread* self=CSoundThread::NewLC();
CleanupStack::Pop(self);
return self;
}
CSoundThread* CSoundThread::NewLC()
{
CSoundThread* self=new(ELeave)CSoundThread();
CleanupStack::PushL(self);
self->ConstructL();
return self;
}
CSoundThread::CSoundThread()
{
}
void CSoundThread::ConstructL()
{
iSound=CMyToneClass::NewL();
_LIT(KThreadName,"sound");
// iThread->Create(KThreadName,iSound->PlayClipL,4096,1024,1024*256,NULL);
}
CSoundThread::~CSoundThread()
{
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -