#pragma once #include #include #include #include "storm/storage/PlayerIndex.h" namespace storm { namespace logic { class PlayerCoalition { public: PlayerCoalition() = default; PlayerCoalition(std::vector> playerIds); PlayerCoalition(PlayerCoalition const& other) = default; std::vector> const& getPlayers() const; friend std::ostream& operator<<(std::ostream& stream, PlayerCoalition const& playerCoalition); private: std::vector> _playerIds; }; } }