| 50 | |
| 51 | template<typename T> |
| 52 | inline bool |
| 53 | string_as( const_string str, T& res ) |
| 54 | { |
| 55 | std::istringstream buff( std::string( str.begin(), str.end() ) ); |
| 56 | buff >> res; |
| 57 | |
| 58 | return !buff.fail() && buff.eof(); |
| 59 | } |
| 60 | |
| 61 | //____________________________________________________________________________// |
| 62 |