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

📄 ecg_info.h

📁 一个开源的心电图测量仪驱动和应用软件,可记录
💻 H
字号:
// ECG_Info.h: interface for the CECG_Info class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ECG_INFO_H__3BE16784_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_)
#define AFX_ECG_INFO_H__3BE16784_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_

#include "MeanDevMaxMin.h"	// Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CEcg_Info:public CObject
{
	DECLARE_SERIAL(CEcg_Info);
public:

	//date and time of starting the recording
	COleDateTime velo_test_date;
	//Conclusion about recording
	CString Conclusion;
	//Who was confirmed the velo test
	CString Confirm_By;
	
	//important ECG info
	MeanDevMaxMin HeartRate;
	MeanDevMaxMin QRS_ms;
	MeanDevMaxMin PR_ms;
	MeanDevMaxMin QT_QTc_ms;

	MeanDevMaxMin BloodPreasure;
	MeanDevMaxMin Temperature;
	//info about power
	MeanDevMaxMin Pwt;
	//
	void Serialize(CArchive& ar);
	CEcg_Info();
	virtual ~CEcg_Info();
private:
	
	

	
};

#endif // !defined(AFX_ECG_INFO_H__3BE16784_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_)

⌨️ 快捷键说明

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