Lines Matching +defs:val +defs:writer
77 // The "writer" interface.
83 //! The writer base class defines a generic interface to output formats.
91 class writer {
93 writer(void) {}
94 virtual ~writer(void) {}
120 class csv_writer : public writer {
191 class ticker_writer : public writer {
202 write_info(const std::string& what, const std::string& val)
205 (*m_os) << "Tests root: " << val << "\n\n";
379 class xml_writer : public writer {
416 write_info(const std::string& what, const std::string& val)
418 (*m_os) << "<info class=\"" << what << "\">" << val << "</info>\n";
508 typedef std::vector< writer* > outs_vector;
512 got_info(const std::string& what, const std::string& val)
516 (*iter)->write_info(what, val);