Exemplo n.º 1
0
 inline
 std::string
 error_info<Tag,T>::
 value_as_string() const
     {
     return to_string_stub(*this);
     }
Exemplo n.º 2
0
	string to_string(const e_nt_status& x)
	{
		return '[' + boost::error_info_name(x) + "] = " + to_string_stub(x.value()) + ", " + to_string_stub(GetNTStatusString(x.value())) + '\n';
	}
Exemplo n.º 3
0
	string to_string(const e_last_error& x)
	{
		return '[' + boost::error_info_name(x) + "] = " + to_string_stub(x.value()) + ", " + to_string_stub(GetLastErrorString(x.value())) + '\n';
	}
Exemplo n.º 4
0
 inline
 std::string
 to_string( error_info<Tag,T> const & x )
     {
     return '[' + error_info_name(x) + "] = " + to_string_stub(x.value()) + '\n';
     }
Exemplo n.º 5
0
 inline
 std::string
 to_string_stub( std::pair<T,U> const & x, Stub s )
     {
     return std::string("(") + to_string_stub(x.first,s) + ',' + to_string_stub(x.second,s) + ')';
     }
Exemplo n.º 6
0
 std::string
 value_as_string() const
     {
     return to_string_stub(value_);
     }
	inline std::string name_value_string() const
	{
		return to_string_stub(*this);
	}