Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Core components

Header <boost/log/core/core.hpp>
Header <boost/log/core/record.hpp>
Header <boost/log/core/record_view.hpp>

Andrey Semashev

19.04.2007

This header contains logging core class definition.

namespace boost {
  namespace log {
    class core;

    typedef shared_ptr< core > core_ptr;
  }
}

Andrey Semashev

09.03.2009

This header contains a logging record class definition.

namespace boost {
  namespace log {
    class record;
    void swap(record &, record &);
  }
}

Andrey Semashev

09.03.2009

This header contains a logging record view class definition.

namespace boost {
  namespace log {
    class record_view;
    void swap(record_view &, record_view &);
  }
}

PrevUpHomeNext