Constructors
Declared in <ball_record.h>
Create a log record having default values for its fixed fields and its user-defined fields.
explicit
Record(bslma::Allocator* basicAllocator = 0);
» more...
Create a log record having the value of the specified original log record.
Record(
Record const& original,
bslma::Allocator* basicAllocator = 0);
» more...
Create a log record with fixed fields having the value of the specified fixedFields and user-defined fields having the value of the specified userFields.
Record(
RecordAttributes const& fixedFields,
UserFields const& userFields,
bslma::Allocator* basicAllocator = 0);
» more...
| Name | Description |
|---|---|
| basicAllocator | memory allocator; null uses the default |
| original | log record to copy |
| fixedFields | fixed fields for the new record |
| userFields | user-defined fields for the new record |