SEECMOAction.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3#pragma once
4#include "cdm/system/equipment/SEEquipmentAction.h"
5
6class CDM_DECL SEECMOAction : public SEEquipmentAction
7{
8 friend class PBEquipmentAction;//friend the serialization class
9public:
10
11 SEECMOAction(Logger* logger);
12 virtual ~SEECMOAction();
13
14 static constexpr char const* ActionType = "ECMO";
15 std::string GetActionType() const override { return ActionType; }
16
17 void Clear() override;
18
19 bool IsValid() const override;
20};
Definition: Logger.h:71
Definition: PBEquipmentActions.h:41
static constexpr char const * ActionType
Definition: SEAction.h:25
Definition: SEECMOAction.h:7
std::string GetActionType() const override
Definition: SEECMOAction.h:15
Definition: SEEquipmentAction.h:7
bool IsValid() const override
Definition: SEEquipmentAction.h:15
void Clear() override
Definition: SEEquipmentAction.h:14

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.