📄 aecg_parser.h
字号:
/***************************************************************************** File: aecg_parser.h* Author: S. Skorokhodov** Description:* A class for reading HL7 v3 Annotated ECG file and exposing its* contents in the form apropriate for BioSig format.******************************************************************************/#pragma once#ifndef _AECG_PARSER_H_#define _AECG_PARSER_H_//---------------------------------------------------------------------------#include "time.h"//---------------------------------------------------------------------------namespace BioSig{//---------------------------------------------------------------------------class Simple_aECGReader{public: //----------------------------------------------------------------------- explicit Simple_aECGReader( const char *pfile_name ); //----------------------------------------------------------------------- ~Simple_aECGReader(); //----------------------------------------------------------------------- const char *subj_name() const; //----------------------------------------------------------------------- const char *subj_id() const; //----------------------------------------------------------------------- struct tm birth_date() const; //----------------------------------------------------------------------- int subj_sex() const; //-----------------------------------------------------------------------private: struct Simple_aECGReaderImpl; Simple_aECGReaderImpl *pimpl_;}; // class aECGParser//---------------------------------------------------------------------------} // namespace BioSig//---------------------------------------------------------------------------#endif /* ifndef _AECG_PARSER_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -