git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1237
270642c3-0616-0410-b53a-bc976706d245
value(other); return *this;
}
+prefix_ std::ostream & senf::operator<<(std::ostream & os, StringParser const & value)
+{
+ os << value.value();
+ return os;
+}
+
///////////////////////////////cci.e///////////////////////////////////////
#undef prefix_
operator value_type() const;
StringParser const & operator=(value_type other);
};
+
+ std::ostream & operator<<(std::ostream & os, StringParser const & value);
}