#include <sstream>
#include <math.h>
#include <string>
#include <errno.h>
#include "invalidcastexception.h"


Go to the source code of this file.
Classes | |
| class | MiscFunctions |
| Represents helper class with methods needed for conversion and mathematical calculations. More... | |
Namespaces | |
| namespace | std |
| STL namespace. | |
Defines | |
| #define | ROUND_TO_DECIMAL_PLACE 16 |
| #define | REPLACE_DECIMAL_POINT_BEFORE true |
| #define | REPLACE_DECIMAL_POINT_AFTER false |
| #define | ROUND_TO_DECIMAL_PLACE 16 |
| #define | REPLACE_DECIMAL_POINT_BEFORE true |
| #define | REPLACE_DECIMAL_POINT_AFTER false |
Header file specifying constructors, destructor and functions for miscfunctions.cpp.
Definition in file miscfunctions.h.
| #define REPLACE_DECIMAL_POINT_AFTER false |
Enable replacing of english comma-character . to german comma-character , in numeric values after all calculation have been made.
Definition at line 67 of file miscfunctions.h.
Referenced by MiscFunctions::getStringFromNumerical().
| #define REPLACE_DECIMAL_POINT_BEFORE true |
Enable replacing of german comma-character , to english comma-character . in strings first before converting into a numeric value.
Definition at line 59 of file miscfunctions.h.
Referenced by MiscFunctions::getNumericFromString().
| #define ROUND_TO_DECIMAL_PLACE 16 |
The number of right-of-comma positions from which is started rounding.
Definition at line 51 of file miscfunctions.h.
1.5.9