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

📄 jiqi1.h

📁 这个程序实现心电波形的提取
💻 H
字号:
#if !defined(AFX_JIQI1_H__96C8BFA1_B33B_11D7_BB61_FB97E1C84959__INCLUDED_)
#define AFX_JIQI1_H__96C8BFA1_B33B_11D7_BB61_FB97E1C84959__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Jiqi1.h : header file
//

#include "Control.h"

/////////////////////////////////////////////////////////////////////////////
// CJiqi thread

class CJiqi : public CWinThread
{
	DECLARE_DYNCREATE(CJiqi)
protected:
	CJiqi();           // protected constructor used by dynamic creation

// Attributes
public:
	struct ThreadPoint{
		double data[100000];
		double data1[10000];
		int PointNumber;
		BOOL runing;
		int WholeNumber;
	}TP;
	UINT m_MainThreadID;
	HWND  hMainWnd;
// Operations
public:
	void QuitPrg();
	void Work(LPARAM lParam);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CJiqi)
	public:
	virtual BOOL InitInstance();
	virtual int ExitInstance();
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CJiqi();

	// Generated message map functions
	//{{AFX_MSG(CJiqi)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_JIQI1_H__96C8BFA1_B33B_11D7_BB61_FB97E1C84959__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -