|
Quaternity
|
This file defines print operators for custom structs. These are useful for debugging purposes. More...
#include <iostream>#include <vector>#include "debug.h"#include "round.h"#include "settings.h"#include "state.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &out, const Card &card) |
| Print the information of a card struct. More... | |
| std::ostream & | operator<< (std::ostream &out, const Player &player) |
| Print the information of a player struct. More... | |
| std::ostream & | operator<< (std::ostream &out, const Settings &settings) |
| Print the information of a settings struct. More... | |
| std::ostream & | operator<< (std::ostream &out, const State &state) |
| Print the information of a state struct. More... | |
| std::ostream & | operator<< (std::ostream &out, const Question &question) |
| Print the information of a question struct. More... | |
This file defines print operators for custom structs. These are useful for debugging purposes.
Definition in file debug.cpp.
| std::ostream& operator<< | ( | std::ostream & | out, |
| const Card & | card | ||
| ) |
Print the information of a card struct.
Definition at line 19 of file debug.cpp.
| std::ostream& operator<< | ( | std::ostream & | out, |
| const Player & | player | ||
| ) |
Print the information of a player struct.
Definition at line 28 of file debug.cpp.
| std::ostream& operator<< | ( | std::ostream & | out, |
| const Question & | question | ||
| ) |
| std::ostream& operator<< | ( | std::ostream & | out, |
| const Settings & | settings | ||
| ) |
Print the information of a settings struct.
Definition at line 37 of file debug.cpp.
| std::ostream& operator<< | ( | std::ostream & | out, |
| const State & | state | ||
| ) |
Print the information of a state struct.
Definition at line 49 of file debug.cpp.