⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 process.h

📁 The SoundIn class provide a set of functions to interface a sound card for input signal.
💻 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 + -