#include <iomanip>
#include <sstream>
#include <string>
#include <vector>
#include "i6engine/utils/i6eSystemParameters.h"
Go to the source code of this file.
|
std::vector< std::string > | i6e::utils::split (const std::string &str, const std::string &delim) |
| returns a vector of strings separated by the given delimitter e.g. a;b;c with delimitter ; will return a vector containing a, b and c More...
|
|
template<typename T > |
std::enable_if< std::is_floating_point< T >::value, std::string >::type | i6e::utils::to_string_with_precision (const T a_value, const int n) |
| returns a string from a floating point value with given precision More...
|
|