aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/misc/Decision.hpp
diff options
context:
space:
mode:
author hop311 <hop3114@gmail.com>2023-12-23 19:26:05 +0100
committer hop311 <hop3114@gmail.com>2023-12-23 19:26:05 +0100
commit8a33982e543b7fb8c09be90ebadb33fe7f99b52f (patch)
tree0fb82e22b383996606ef6adc3e92c42d85bc6777 /src/openvic-simulation/misc/Decision.hpp
parent14e47d58b85f657ec1fed8abf88219f09bd3efbb (diff)
Fixed TGC compatibility + misc cleanup
Diffstat (limited to 'src/openvic-simulation/misc/Decision.hpp')
-rw-r--r--src/openvic-simulation/misc/Decision.hpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/openvic-simulation/misc/Decision.hpp b/src/openvic-simulation/misc/Decision.hpp
index 452512d..32141fe 100644
--- a/src/openvic-simulation/misc/Decision.hpp
+++ b/src/openvic-simulation/misc/Decision.hpp
@@ -18,9 +18,8 @@ namespace OpenVic {
const std::string PROPERTY(picture);
Decision(
- std::string_view new_identifier, bool new_alert, bool new_news,
- std::string_view new_news_title, std::string_view new_news_desc_long,
- std::string_view new_news_desc_medium, std::string_view new_news_desc_short,
+ std::string_view new_identifier, bool new_alert, bool new_news, std::string_view new_news_title,
+ std::string_view new_news_desc_long, std::string_view new_news_desc_medium, std::string_view new_news_desc_short,
std::string_view new_picture
);
@@ -34,9 +33,8 @@ namespace OpenVic {
public:
bool add_decision(
- std::string_view identifier, bool alert, bool news, std::string_view news_title,
- std::string_view news_desc_long, std::string_view news_desc_medium,
- std::string_view news_desc_short, std::string_view picture
+ std::string_view identifier, bool alert, bool news, std::string_view news_title, std::string_view news_desc_long,
+ std::string_view news_desc_medium, std::string_view news_desc_short, std::string_view picture
);
bool load_decision_file(ast::NodeCPtr root);