Health-GPS 3.0.0.0
Global Health Policy Simulation model (Health-GPS)
Loading...
Searching...
No Matches
indicator.h
Go to the documentation of this file.
1#pragma once
2#include <string>
3
4namespace hgps::core {
5
7struct BirthItem {
9 int at_time;
10
12 float number;
13
15 float sex_ratio;
16};
17} // namespace hgps::core
Top-level namespace for Health-GPS Core C++ API.
Definition analysis.h:7
Birth rate indicator for a country data structure.
Definition indicator.h:7
float sex_ratio
Sex Ratio at Birth (males per 100 female births)
Definition indicator.h:15
int at_time
The reference time.
Definition indicator.h:9
float number
The total number of births.
Definition indicator.h:12