Constructors
Declared in <ball_recordjsonformatter.h>
Create a record JSON formatter by moving from the specified original formatter.
RecordJsonFormatter(bslmf::MovableRef<RecordJsonFormatter> original) noexcept;
» more...
Create a record JSON formatter having a default format specification and record separator.
explicit
RecordJsonFormatter(allocator_type const& allocator = allocator_type());
» more...
Create a record JSON formatter by moving from original using the specified allocator.
RecordJsonFormatter(
bslmf::MovableRef<RecordJsonFormatter> original,
allocator_type const& allocator);
» more...
Create a record JSON formatter initialized to the value of the specified original record formatter.
RecordJsonFormatter(
RecordJsonFormatter const& original,
allocator_type const& allocator = allocator_type());
» more...
| Name | Description |
|---|---|
| original | formatter to move from |
| allocator | memory allocator used to supply memory |