Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KDL_UTILITY_IO_H_84822
00021 #define KDL_UTILITY_IO_H_84822
00022
00023
00024
00025
00026
00027 #include <iostream>
00028 #include <iomanip>
00029 #include <fstream>
00030
00031
00032 namespace KDL {
00033
00034
00038 void _check_istream(std::istream& is);
00039
00040
00046 void Eat(std::istream& is, int delim );
00047
00054 void Eat(std::istream& is,const char* descript);
00055
00063 void EatWord(std::istream& is,const char* delim,char* storage,int maxsize);
00064
00071 void EatEnd( std::istream& is, int delim );
00072
00073
00074
00075
00076 }
00077
00078
00079 #endif