SEPatientAssessment.h
1 /**************************************************************************************
2 Copyright 2015 Applied Research Associates, Inc.
3 Licensed under the Apache License, Version 2.0 (the "License"); you may not use
4 this file except in compliance with the License. You may obtain a copy of the License
5 at:
6 http://www.apache.org/licenses/LICENSE-2.0
7 Unless required by applicable law or agreed to in writing, software distributed under
8 the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9 CONDITIONS OF ANY KIND, either express or implied. See the License for the
10 specific language governing permissions and limitations under the License.
11 **************************************************************************************/
12 
13 #pragma once
14 #include <biogears/cdm/CommonDataModel.h>
15 #include <biogears/exports.h>
16 
17 CDM_BIND_DECL(PatientAssessmentData)
18 namespace biogears {
25 class BIOGEARS_API SEPatientAssessment {
26 public:
28  virtual ~SEPatientAssessment();
29 
30  virtual const char* classname() const = 0;
31 
32  virtual void Reset();
33  virtual void Clear();
34 
35  virtual bool Load(const CDM::PatientAssessmentData& in);
36  virtual CDM::PatientAssessmentData* Unload();
37 
38 protected:
39  virtual void Unload(CDM::PatientAssessmentData& data);
40 
41 public:
42 };
43 }
Class corresponding to the PatientAssessmentData schema type.
Definition: PatientAssessments.hxx:694
Data formed at a level of a clinicians report. This is high level data, such as a mean or generalized...
Definition: SEPatientAssessment.h:25
Definition: SEElectricalCircuit.h:18