Definitions for the interface to Wesnoth Markup Language (WML). More...
#include "tstring.hpp"
#include "utils/variant.hpp"
#include <chrono>
#include <climits>
#include <ctime>
#include <iosfwd>
#include <string>
#include <vector>
#include <type_traits>
Go to the source code of this file.
Classes | |
class | config_attribute_value |
Variant for storing WML attributes. More... | |
class | config_attribute_value::true_false |
A wrapper for bool to get the correct streaming ("true"/"false"). More... | |
class | config_attribute_value::yes_no |
A wrapper for bool to get the correct streaming ("yes"/"no"). More... | |
Namespaces | |
utils | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const std::monostate &) |
Specialize operator<< for monostate. More... | |
std::vector< std::string > | utils::split (const config_attribute_value &val) |
Definitions for the interface to Wesnoth Markup Language (WML).
This module defines the interface to Wesnoth Markup Language (WML). WML is a simple hierarchical text-based file format. The format is defined in Wiki, under BuildingScenariosWML
All configuration files are stored in this format, and data is sent across the network in this format. It is thus used extensively throughout the game.
Definition in file config_attribute_value.hpp.
|
inline |
Specialize operator<< for monostate.
Boost already does this, but the STL does not.
Definition at line 228 of file config_attribute_value.hpp.