alaCarte Maps
Renderer for OpenStreetMap tiles
|
#include "settings.hpp"
Go to the source code of this file.
Namespaces | |
eval | |
This file is part of alaCarte. | |
Macros | |
#define | _EVAL_HELPERS_HPP |
This file is part of alaCarte. More... | |
Functions | |
template<typename T > | |
bool | eval::Conv (const string &str, T *out, bool tryToCache=false) |
Converts a string into another type. More... | |
template<> | |
bool | eval::Conv (const string &str, bool *out, bool tryToCache) |
Use some extra function for bool conversion. More... | |
template<> | |
bool | eval::Conv (const string &str, Color *out, bool tryToCache) |
Use some extra function for color conversion. More... | |
template<> | |
bool | eval::Conv (const string &str, string *out, bool tryToCache) |
Use some extra function for string conversion. More... | |
template<> | |
bool | eval::Conv (const string &str, MaybeCachedString *out, bool tryToCache) |
Use some extra function for MaybeCachedString conversion. More... | |
template<typename T > | |
string | eval::ToString (const T &v) |
Converts a value into a string. More... | |
template<> | |
string | eval::ToString (const bool &v) |
template<typename Iter1 , typename Iter2 > | |
string | eval::ToString (Iter1 begin, Iter2 end) |
Converts a value list into a string. More... | |
#define _EVAL_HELPERS_HPP |
This file is part of alaCarte.
alaCarte is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
alaCarte is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with alaCarte. If not, see http://www.gnu.org/licenses/.
Copyright alaCarte 2012-2013 Simon Dreher, Florian Jacob, Tobias Kahlert, Patrick Niklaus, Bernhard Scheirle, Lisa Winter Maintainer: Tobias Kahlert
Definition at line 23 of file eval_helpers.hpp.