Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class stream_holder

boost::unit_test::runtime_config::stream_holder

Synopsis

// In header: <boost/test/unit_test_parameters.hpp>


class stream_holder {
public:
  // construct/copy/destruct
  explicit stream_holder(std::ostream &);

  // public member functions
  void setup(runtime::cstring);
  std::ostream & ref() const;
};

Description

stream_holder public construct/copy/destruct

  1. explicit stream_holder(std::ostream & default_stream);

stream_holder public member functions

  1. void setup(runtime::cstring param_name);
  2. std::ostream & ref() const;

PrevUpHomeNext