Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pulse Physiology Suite
engine
Commits
663c3813
Commit
663c3813
authored
Oct 24, 2019
by
Aaron Bray
Browse files
Forgot to support reflection for data requests for new properties
parent
ecc6913a
Changes
1
Hide whitespace changes
Inline
Side-by-side
cdm/cpp/system/physiology/SERespiratorySystem.cpp
View file @
663c3813
...
...
@@ -166,6 +166,8 @@ const SEScalar* SERespiratorySystem::GetScalar(const std::string& name)
return
&
GetInspiratoryPulmonaryResistance
();
if
(
name
.
compare
(
"IntrapleuralPressure"
)
==
0
)
return
&
GetIntrapleuralPressure
();
if
(
name
.
compare
(
"IntrapulmonaryPressure"
)
==
0
)
return
&
GetIntrapulmonaryPressure
();
if
(
name
.
compare
(
"LungCompliance"
)
==
0
)
return
&
GetLungCompliance
();
if
(
name
.
compare
(
"MaximalInspiratoryPressure"
)
==
0
)
...
...
@@ -216,6 +218,8 @@ const SEScalar* SERespiratorySystem::GetScalar(const std::string& name)
return
&
GetTransalveolarPressure
();
if
(
name
.
compare
(
"TransChestWallPressure"
)
==
0
)
return
&
GetTransChestWallPressure
();
if
(
name
.
compare
(
"TransMusclePressure"
)
==
0
)
return
&
GetTransMusclePressure
();
if
(
name
.
compare
(
"TranspulmonaryPressure"
)
==
0
)
return
&
GetTranspulmonaryPressure
();
if
(
name
.
compare
(
"TransrespiratoryPressure"
)
==
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment