37 testInvariant ()
const
47 : m_label (
"out"), m_output (0)
55 OutputStream (
const std::string& val_label)
56 : m_label (val_label), m_output (0)
66 OutputStream (
const std::string& val_label,
const std::string& val_type)
67 : m_label (val_label), m_output (0)
71 m_options.setString(optType, val_type);
79 OutputStream (
const OutputStream& that)
80 : TObject (that), m_label (that.m_label),
81 m_options (that.m_options), m_output (0)
85 if (that.m_output != 0)
104 OutputStream& OutputStream ::
105 operator = (OutputStream that)
115 swap (OutputStream& that)
120 m_label.swap (that.m_label);
121 m_options.swap (that.m_options);
124 m_output = that.m_output;
125 that.m_output = tmp_output;
130 const std::string& OutputStream ::
140 label (
const std::string& val_label)
181 m_output = output_swallow;