AuxPort 0.2
Modules for Audio Software Development
|
This class provides functions to cast data from one type to another. More...
#include <AuxCaster.h>
Static Public Member Functions | |
static std::string | toStdString (uint32 number) |
This casts a unsigned int32 to a std::string. | |
static std::string | toStdString (double number) |
This casts a double to a std::string. | |
static std::string | toStdString (long long number) |
This casts a long long to a std::string. | |
static int32 | toInt (char value) |
This casts a numerical char to int32. | |
static char | toChar (int32 value) |
This casts a int32 to char. | |
static double | toDouble (const std::string &value) |
This casts a string to Double. | |
static long double | toLongDouble (const std::string &value) |
This casts a string to a double-precision float. | |
static float | toFloat (const std::string &value) |
This casts a std::string to a float. | |
This class provides functions to cast data from one type to another.
Definition at line 101 of file AuxCaster.h.
|
inlinestatic |
This casts a int32 to char.
Definition at line 177 of file AuxCaster.h.
|
inlinestatic |
This casts a string to Double.
Definition at line 183 of file AuxCaster.h.
|
inlinestatic |
This casts a std::string to a float.
Definition at line 214 of file AuxCaster.h.
|
inlinestatic |
This casts a numerical char to int32.
Definition at line 172 of file AuxCaster.h.
|
inlinestatic |
This casts a string to a double-precision float.
Definition at line 199 of file AuxCaster.h.
|
inlinestatic |
This casts a double to a std::string.
Definition at line 156 of file AuxCaster.h.
|
inlinestatic |
This casts a long long to a std::string.
Definition at line 164 of file AuxCaster.h.
|
inlinestatic |
This casts a unsigned int32 to a std::string.
Definition at line 138 of file AuxCaster.h.