Building Medical Digital Twins with Pulse: Open Source Simulation Tools for Developers and Researchers
×
SEArray.h
1 /* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3 
4 #pragma once
5 #include "cdm/properties/SEProperty.h"
6 
7 class CDM_DECL SEArray : public SEProperty
8 {
9  friend class PBProperty;//friend the serialization class
10 public:
11  SEArray();
12  ~SEArray();
13 
14  virtual void Clear();
15  void Copy(const SEArray& src);
16 
17  bool IsValid() const override;
18  void Invalidate() override;
19 
20  std::vector<double>& GetData();
21 
22 protected:
23  std::vector<double> m_Data;
24 };
Definition: PBProperties.h:87
static void Copy(const SECurve &src, SECurve &dst)
Definition: PBProperties.cpp:82
Definition: SEArray.h:8
std::vector< double > m_Data
Definition: SEArray.h:23
Definition: SEProperty.h:8
virtual void Invalidate()=0
virtual bool IsValid() const =0

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.