?? process.h
字號:
// Process.h: interface for the CProcess class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PROCESS_H__B8CBE642_39B5_11D2_8045_BC0310C10374__INCLUDED_)
#define AFX_PROCESS_H__B8CBE642_39B5_11D2_8045_BC0310C10374__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include "soundin.h"
/*------------------------------------------------------------
This class is the top class for all the sound process
CProcess
XCorr
CFft
CFilter
CSound
Only the adresse of the function ComputeSamples() is passed
to the Sound Thread by the param "this"
every class has his own vitual function and must
call his base class first.
-------------------------------------------------------------*/
class CProcess : public CSoundIn
{
public:
CProcess();
virtual ~CProcess();
virtual void ComputeSamples(SHORT *);
};
#endif // !defined(AFX_PROCESS_H__B8CBE642_39B5_11D2_8045_BC0310C10374__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -