30 testInvariant ()
const
40 : m_label (
"out"), m_output (0)
48 OutputStream (
const std::string& val_label)
49 : m_label (val_label), m_output (0)
59 OutputStream (
const std::string& val_label,
const std::string& val_type)
60 : m_label (val_label), m_output (0)
64 m_options.setString(optType, val_type);
72 OutputStream (
const OutputStream& that)
73 : TObject (that), m_label (that.m_label),
74 m_options (that.m_options), m_output (0)
78 if (that.m_output != 0)
97 OutputStream& OutputStream ::
98 operator = (OutputStream that)
108 swap (OutputStream& that)
113 m_label.swap (that.m_label);
114 m_options.swap (that.m_options);
117 m_output = that.m_output;
118 that.m_output = tmp_output;
123 const std::string& OutputStream ::
133 label (
const std::string& val_label)
174 m_output = output_swallow;