wesnoth/src/wml_separators.hpp
2023-04-29 10:48:11 -05:00

36 lines
928 B
C++

/*
Copyright (C) 2003 - 2023
by David White <dave@whitevine.net>
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
#pragma once
char const HELP_STRING_SEPARATOR = '|', DEFAULT_ITEM = '*', COLUMN_SEPARATOR = '=',
IMAGE_PREFIX = '&', IMG_TEXT_SEPARATOR = 1, HEADING_PREFIX = 2;
inline bool is_wml_separator(char c)
{
switch(c)
{
case HELP_STRING_SEPARATOR:
case DEFAULT_ITEM:
case COLUMN_SEPARATOR:
case IMAGE_PREFIX:
case IMG_TEXT_SEPARATOR:
case HEADING_PREFIX:
return true;
default:
return false;
}
}