#include <string>
#include <sstream>
#include <vector>
#include <boost/algorithm/string.hpp>
#include <boost/uuid/nil_generator.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>
Go to the source code of this file.
static std::string BoolToString |
( |
const bool & |
val | ) |
|
|
inlinestatic |
template<typename NumberType >
static const std::string integerToHexString |
( |
const NumberType & |
num | ) |
|
|
inlinestatic |
template<>
const std::string integerToHexString |
( |
const int8_t & |
num | ) |
|
|
inline |
template<>
const std::string integerToHexString |
( |
const uint8_t & |
num | ) |
|
|
inline |
template<typename NumberType >
static const std::string integerToString |
( |
const NumberType & |
num | ) |
|
|
inlinestatic |
template<>
const std::string integerToString |
( |
const int8_t & |
num | ) |
|
|
inline |
template<>
const std::string integerToString |
( |
const uint8_t & |
num | ) |
|
|
inline |
static bool StringToBool |
( |
const std::string & |
in_string | ) |
|
|
inlinestatic |
template<typename NumberType >
bool stringToInteger |
( |
const std::string & |
str, |
|
|
NumberType & |
num |
|
) |
| |
|
inline |
template<>
bool stringToInteger |
( |
const std::string & |
str, |
|
|
int64_t & |
num |
|
) |
| |
|
inline |
template<>
bool stringToInteger |
( |
const std::string & |
str, |
|
|
uint64_t & |
num |
|
) |
| |
|
inline |
template<>
bool stringToInteger |
( |
const std::string & |
str, |
|
|
double & |
num |
|
) |
| |
|
inline |
template<typename NumberType >
static bool stringToIntegerList |
( |
std::string |
input, |
|
|
std::string |
seperator, |
|
|
std::vector< NumberType > & |
entries |
|
) |
| |
|
inlinestatic |
template<typename NumberType >
bool stringToLongLong |
( |
const std::string & |
str, |
|
|
NumberType & |
num |
|
) |
| |
|
inline |