|
void | set (std::string const &newIndent, std::string const &newFirstIndent) |
|
void | set (std::string &&newIndent, std::string &&newFirstIndent) |
|
void | set (std::string const &newIndent) |
|
Definition at line 41 of file DumperBase.h.
void dump::DumperBase::IndentSettings::set |
( |
std::string const & |
newIndent, |
|
|
std::string const & |
newFirstIndent |
|
) |
| |
|
inline |
Definition at line 45 of file DumperBase.h.
std::string firstIndent
Indentation string for the first line.
std::string indent
Default indentation string.
void dump::DumperBase::IndentSettings::set |
( |
std::string && |
newIndent, |
|
|
std::string && |
newFirstIndent |
|
) |
| |
|
inline |
Definition at line 47 of file DumperBase.h.
49 indent = std::move(newIndent);
std::string firstIndent
Indentation string for the first line.
std::string indent
Default indentation string.
void dump::DumperBase::IndentSettings::set |
( |
std::string const & |
newIndent | ) |
|
|
inline |
Definition at line 52 of file DumperBase.h.
52 {
set(newIndent, newIndent); }
void set(std::string const &newIndent, std::string const &newFirstIndent)
std::string dump::DumperBase::IndentSettings::firstIndent = "" |
Indentation string for the first line.
Definition at line 43 of file DumperBase.h.
std::string dump::DumperBase::IndentSettings::indent = "" |
Default indentation string.
Definition at line 42 of file DumperBase.h.
The documentation for this struct was generated from the following file: