Conquer Chess
Chess and Starcraft combined
Loading...
Searching...
No Matches
options_view_item.h
Go to the documentation of this file.
1#ifndef OPTIONS_VIEW_ITEM_H
2#define OPTIONS_VIEW_ITEM_H
3
4#include <iosfwd>
5#include <string>
6#include <vector>
7
20
22std::vector<options_view_item> get_all_options_view_items() noexcept;
23
27
31
35
39
40std::string to_str(const options_view_item item) noexcept;
41
44
45std::ostream& operator<<(std::ostream& os, const options_view_item i) noexcept;
46
47#endif // OPTIONS_VIEW_ITEM_H
options_view_item get_left_of(const options_view_item item) noexcept
Get the item left of the current one, i.e.
Definition options_view_item.cpp:53
options_view_item
A selectable item at in the Options menu.
Definition options_view_item.h:12
options_view_item get_above(const options_view_item item) noexcept
Get the item above the current one, i.e.
Definition options_view_item.cpp:20
void test_options_view_item()
Test this class and free functions.
Definition options_view_item.cpp:87
options_view_item get_below(const options_view_item item) noexcept
Get the item below the current one, i.e.
Definition options_view_item.cpp:37
std::vector< options_view_item > get_all_options_view_items() noexcept
Get all the options view items.
Definition options_view_item.cpp:10
options_view_item get_right_of(const options_view_item item) noexcept
Get the item right of the current one, i.e.
Definition options_view_item.cpp:70
std::string to_str(const options_view_item item) noexcept
Definition options_view_item.cpp:177