#include <sstream>

Go to the source code of this file.
Functions | |
| int | main () |
| int main | ( | ) |
Definition at line 21 of file bbtkTestIstringStream.cxx.
00022 { 00023 std::istringstream os; 00024 int vm; 00025 std::string s = "5"; 00026 os.str(s); 00027 00028 os >> vm; 00029 00030 return vm; 00031 }
1.5.7.1