Engine.h
1 /* Distributed under the Apache License, Version 2.0.
2  See accompanying NOTICE file for details.*/
3 #pragma once
4 
5 #include "engine/common/Engine.h"
6 
7 namespace pulse { namespace human_adult_whole_body
8 {
9  //--------------------------------------------------------------------------------------------------
16  //--------------------------------------------------------------------------------------------------
17  class PULSE_DECL Engine : public pulse::Engine
18  {
19  public:
20  Engine(Logger* logger = nullptr);
21  virtual ~Engine() = default;
22  protected:
23  virtual void AllocateController() const override;
24  };
25 
26  extern PULSE_DECL bool SetupPatient(SEPatient& p);
27 END_NAMESPACE_EX
Definition: Logger.h:71
Definition: SEPatient.h:13
Definition: Logger.h:14

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.