![]() |
R-Type
2
Doom but in better
|
#include <map>
#include <set>
#include <vector>
#include <utility>
#include <ostream>
#include <unordered_set>
#include <unordered_map>
#include "Recoded/ToString.hpp"
#include "GUI/Network/MessageType.hpp"
#include "GUI/Network/MessageStruct.hpp"
#include "GUI/ECS/GameComponents/Package.hpp"
#include "GUI/ECS/GameComponents/ECSPackage.hpp"
#include "GUI/ECS/GameComponents/EntityType.hpp"
#include "GUI/ECS/GameComponents/EntityActions.hpp"
#include "GUI/ECS/GameComponents/EntityActionType.hpp"
Go to the source code of this file.
Namespaces | |
namespace | Utilities |
Functions | |
std::ostream & | Utilities::operator<< (std::ostream &os, const bool &item) |
Outputs a boolean value to the given output stream using a custom string representation. | |
template<typename T1 , typename T2 > | |
std::ostream & | Utilities::operator<< (std::ostream &os, const std::pair< T1, T2 > &item) |
Outputs a pair of items to the given output stream using a custom string representation. | |
template<typename T > | |
std::ostream & | Utilities::operator<< (std::ostream &os, const std::vector< T > &set) |
Outputs a vector of items to the given output stream using a custom string representation. | |
template<typename Key , typename Value > | |
std::ostream & | Utilities::operator<< (std::ostream &os, const std::unordered_map< Key, Value > &map) |
Outputs an unordered_map of items to the given output stream using a custom string representation. | |
template<typename T > | |
std::ostream & | Utilities::operator<< (std::ostream &os, const std::set< T > &set) |
Outputs a set of items to the given output stream using a custom string representation. | |
template<typename T > | |
std::ostream & | Utilities::operator<< (std::ostream &os, const std::unordered_set< T > &set) |
Outputs an unordered_set of items to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const ActiveScreen &item) |
Outputs a the string value of the ActiveScreen enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::GameComponents::Package_t &item) |
Outputs a the string value of the Package_t enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::GameComponents::EntityType &item) |
Outputs a the string value of the EntityType enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::GameComponents::ECSPackage_t &item) |
Outputs a the string value of the ECSPackage_t enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::GameComponents::EntityActions_t &item) |
Outputs a the string value of the EntityActions_t enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::GameComponents::EntityActionType &item) |
Outputs a the string value of the EntityActionType enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::ECS::Systems::ActiveShape &item) |
Outputs a the string value of the ActiveShape enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::Network::MessageType &item) |
Outputs a the string value of the MessageType enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::Network::MessageInfo &item) |
Outputs a the string value of the MessageInfo enum to the given output stream using a custom string representation. | |
std::ostream & | Utilities::operator<< (std::ostream &os, const GUI::Network::MessageNode &item) |
Outputs a the string value of the MessageNode enum to the given output stream using a custom string representation. | |