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

Class dump_manip

boost::log::dump_manip — Manipulator for printing binary representation of the data.

Synopsis

// In header: <boost/log/utility/manipulators/dump.hpp>


class dump_manip {
public:
  // construct/copy/destruct
  dump_manip(const void *, std::size_t);
  dump_manip(dump_manip const &);

  // public member functions
  const void * get_data() const;
  std::size_t get_size() const;
};

Description

dump_manip public construct/copy/destruct

  1. dump_manip(const void * data, std::size_t size);
  2. dump_manip(dump_manip const & that);

dump_manip public member functions

  1. const void * get_data() const;
  2. std::size_t get_size() const;

PrevUpHomeNext