Medial Code Documentation
Loading...
Searching...
No Matches
MedRegistryRecord.h
1#ifndef __MED_REGISTRY_RECORD_H__
2#define __MED_REGISTRY_RECORD_H__
4#include <MedMat/MedMat/MedMatConstants.h>
11{
12public:
13 int pid;
14 //defines the registry value apply date range
17
19
21 pid = -1;
22 start_date = -1;
23 end_date = -1;
24 registry_value = MED_MAT_MISSING_VALUE;
25 }
26
27 ADD_CLASS_NAME(MedRegistryRecord)
29};
30
32
33#endif
An Abstract class that can be serialized and written/read from file.
#define ADD_SERIALIZATION_FUNCS(...)
Definition SerializableObject.h:122
#define MEDSERIALIZE_SUPPORT(Type)
Definition SerializableObject.h:108
A class which represnt a registry record of patient in time range from start_date to end_date It has ...
Definition MedRegistryRecord.h:11
int start_date
the start_date range for the record
Definition MedRegistryRecord.h:15
int end_date
the end_date range for the record
Definition MedRegistryRecord.h:16
int pid
patient ID
Definition MedRegistryRecord.h:13
float registry_value
the registry value/state
Definition MedRegistryRecord.h:18
Definition SerializableObject.h:32