Home | History | Annotate | Download | only in libutil++

Lines Matching refs:verbose

3  * verbose output stream
25 verbose vlevel1("level1");
26 verbose vdebug("debug");
27 verbose vstats("stats");
28 verbose vsfile("sfile");
29 verbose vxml("xml");
51 // We use a multimap because user can create multiple verbose object with
54 typedef multimap<string, verbose *> recorder_t;
55 // The recorder is lazilly created by verbose object ctor
61 verbose::verbose(char const * name)
66 // verbose all("all"); it's meaningless. "all" verbose named object is
76 verbose verbose::operator|(verbose const & rhs)
78 verbose result(*this);
84 verbose verbose::operator&(verbose const & rhs)
86 verbose result(*this);
92 bool verbose::setup(string const & name)
111 bool verbose::setup(vector<string> const & names)
120 ostream& operator<<(cverb_object &, verbose const & v)