SEHepaticSystem.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3
4#pragma once
5#include "cdm/system/SESystem.h"
6
7class CDM_DECL SEHepaticSystem : public SESystem
8{
9 friend class PBPhysiology;//friend the serialization class
10public:
11
12 SEHepaticSystem(Logger* logger);
13 virtual ~SEHepaticSystem();
14
15 virtual void Clear();// Deletes all members
16
17 virtual const SEScalar* GetScalar(const std::string& name);
18
19protected:
20
21
22};
Definition: Logger.h:71
Definition: PBPhysiology.h:22
Definition: SEHepaticSystem.h:8
Definition: SEScalar.h:19
Definition: SESystem.h:8
virtual const SEScalar * GetScalar(const std::string &name)=0
virtual void Clear()
Definition: SESystem.cpp:17

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.