aecg_parser.h
来自「BIOSIG is an open source software librar」· C头文件 代码 · 共 44 行
H
44 行
/***************************************************************************** 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 + =
减小字号Ctrl + -
显示快捷键?