From 376e4756db0d331d0e3ce31764f250ffeca5a472 Mon Sep 17 00:00:00 2001 From: Stefan Pranger Date: Mon, 23 Nov 2020 13:44:46 +0100 Subject: [PATCH] added Coalition default ctor --- src/storm/logic/Coalition.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/storm/logic/Coalition.h diff --git a/src/storm/logic/Coalition.h b/src/storm/logic/Coalition.h new file mode 100644 index 000000000..108ea53ef --- /dev/null +++ b/src/storm/logic/Coalition.h @@ -0,0 +1,30 @@ +#ifndef STORM_LOGIC_COALITION_H_ +#define STORM_LOGIC_COALITION_H_ + +#include +#include + +#include +#include "storm/storage/BoostTypes.h" +#include "storm/utility/OsDetection.h" + +namespace storm { + namespace logic { + + class Coalition { + public: + Coalition() = default; + Coalition(std::vector const& playerNames, std::vector const& playerIds); + Coalition(Coalition const& other) = default; + + friend std::ostream& operator<<(std::ostream& stream, Coalition const& coalition); + + private: + std::vector playerNames; + std::vector playerIds; + }; + } +} + + +#endif /* STORM_LOGIC_COALITION_H_ */