#include "common.h"
Functions | |
int | StringToInt (std::string stringValue) |
std::string | IntToString (int iValue) |
std::string | FloatToString (float fValue) |
std::string FloatToString | ( | float | fValue | ) |
Converts a float value to an std:string
fValue | the float value to convert to an std::string |
std::string IntToString | ( | int | iValue | ) |
Converts an int value to an std:string
iValue | the int value to convert to an std::string |
int StringToInt | ( | std::string | stringValue | ) |
Converts an std:string to an int value
stringValue | the string to convert to an int value |