CppLogging
1.0.4.0
C++ Logging Library
|
Null layout. More...
#include <null_layout.h>
Public Member Functions | |
NullLayout ()=default | |
NullLayout (const NullLayout &)=delete | |
NullLayout (NullLayout &&)=delete | |
virtual | ~NullLayout ()=default |
NullLayout & | operator= (const NullLayout &)=delete |
NullLayout & | operator= (NullLayout &&)=delete |
void | LayoutRecord (Record &record) override |
Layout the given logging record into a raw buffer. More... | |
Public Member Functions inherited from CppLogging::Element | |
virtual bool | IsStarted () const noexcept |
Is the logging element started? More... | |
virtual bool | Start () |
Start the logging element. More... | |
virtual bool | Stop () |
Stop the logging element. More... | |
Null layout.
Null layout does nothing with a given logging record.
Thread-safe.
Definition at line 22 of file null_layout.h.
|
default |
|
delete |
|
delete |
|
virtualdefault |
|
inlineoverridevirtual |
Layout the given logging record into a raw buffer.
This method will update the raw filed of the given logging record.
record | - Logging record |
Implements CppLogging::Layout.
Definition at line 34 of file null_layout.h.
|
delete |
|
delete |