diff options
author | zaaarf <me@zaaarf.foo> | 2023-12-11 11:04:54 +0100 |
---|---|---|
committer | zaaarf <me@zaaarf.foo> | 2023-12-11 11:04:54 +0100 |
commit | f556519575bbbf24d247f341ca762fb1878ed64d (patch) | |
tree | 6c92bd5a8f6407282ba549b2fbf5f55568ffa9a2 /src/openvic-simulation/history/CountryHistory.hpp | |
parent | 85155e033e9b03d71752626137a75f6418a5786c (diff) |
feat: completed country history loading
Diffstat (limited to 'src/openvic-simulation/history/CountryHistory.hpp')
-rw-r--r-- | src/openvic-simulation/history/CountryHistory.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvic-simulation/history/CountryHistory.hpp b/src/openvic-simulation/history/CountryHistory.hpp index af7d502..3f0965f 100644 --- a/src/openvic-simulation/history/CountryHistory.hpp +++ b/src/openvic-simulation/history/CountryHistory.hpp @@ -3,6 +3,7 @@ #include <map> #include <optional> +#include "openvic-simulation/misc/Decision.hpp" #include "openvic-simulation/country/Country.hpp" #include "openvic-simulation/history/Bookmark.hpp" #include "openvic-simulation/history/HistoryMap.hpp" @@ -55,8 +56,7 @@ namespace OpenVic { string_set_t PROPERTY(country_flags); string_set_t PROPERTY(global_flags); std::map<GovernmentType const*, std::string> PROPERTY(government_flags); - - //TODO: decisions + std::set<Decision const*> decisions; CountryHistoryEntry(Country const& new_country, Date new_date); }; |