Building Medical Digital Twins with Pulse: Open Source Simulation Tools for Developers and Researchers
×
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 
7 class CDM_DECL SEHepaticSystem : public SESystem
8 {
9  friend class PBPhysiology;//friend the serialization class
10 public:
11 
12  SEHepaticSystem(Logger* logger);
13  virtual ~SEHepaticSystem();
14 
15  void Clear() override;// Deletes all members
16 
17  const SEScalar* GetScalar(const std::string& name) override;
18 
19 protected:
20 
21 
22 };
Definition: Logger.h:71
Definition: PBPhysiology.h:24
Definition: SEHepaticSystem.h:8
Definition: SEScalar.h:19
Definition: SESystem.h:8
virtual void Clear()
Definition: SESystem.cpp:17
virtual const SEScalar * GetScalar(const std::string &name)=0

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.