#include <mrpt/utils/core_defs.h>
#include <string>
#include <stdexcept>
Go to the source code of this file.
|
| mrpt |
| This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
|
|
| mrpt::utils |
| Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
|
|
|
#define | LOADABLEOPTS_DUMP_VAR(variableName, variableType) { dumpVar_##variableType(out, #variableName,static_cast<variableType>(variableName)); } |
| Macro for dumping a variable to a stream, within the method "dumpToTextStream(out)" (Variable types are: int, double, float, bool, string. More...
|
|
#define | LOADABLEOPTS_DUMP_VAR_DEG(variableName) { dumpVar_double(out, #variableName,RAD2DEG(static_cast<double>(variableName))); } |
| Macro for dumping a variable to a stream, transforming the argument from radians to degrees. More...
|
|
◆ LOADABLEOPTS_DUMP_VAR
#define LOADABLEOPTS_DUMP_VAR |
( |
|
variableName, |
|
|
|
variableType |
|
) |
| { dumpVar_##variableType(out, #variableName,static_cast<variableType>(variableName)); } |
Macro for dumping a variable to a stream, within the method "dumpToTextStream(out)" (Variable types are: int, double, float, bool, string.
Definition at line 96 of file CLoadableOptions.h.
◆ LOADABLEOPTS_DUMP_VAR_DEG
#define LOADABLEOPTS_DUMP_VAR_DEG |
( |
|
variableName | ) |
{ dumpVar_double(out, #variableName,RAD2DEG(static_cast<double>(variableName))); } |
Macro for dumping a variable to a stream, transforming the argument from radians to degrees.
Definition at line 99 of file CLoadableOptions.h.