template <typename T>
makecmd & operator<<(T const & datum)
{
append( boost::lexical_cast<std::string>(datum) );
return *this;
}
[VC++] operator <<
2014. 3. 8. 04:03
template <typename T>
makecmd & operator<<(T const & datum)
{
append( boost::lexical_cast<std::string>(datum) );
return *this;
}