SEPatientCondition.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3
4#pragma once
5#include "cdm/engine/SECondition.h"
6
7class CDM_DECL SEPatientCondition : public SECondition
8{
9 friend class PBPatientCondition;//friend the serialization class
10public:
11
13 virtual ~SEPatientCondition();
14
15 static constexpr char const* ConditionType = "Patient";
16 virtual std::string GetConditionType() const override { return ConditionType; }
17
18 void Clear() override;
19
20 bool IsValid() const override = 0;
21 bool IsActive() const override = 0;
22};
Definition: Logger.h:71
Definition: PBPatientConditions.h:24
Definition: SECondition.h:8
virtual void Clear()
Definition: SECondition.cpp:21
static constexpr char const * ConditionType
Definition: SECondition.h:16
Definition: SEPatientCondition.h:8
bool IsValid() const override=0
bool IsActive() const override=0
virtual std::string GetConditionType() const override
Definition: SEPatientCondition.h:16

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.