00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef stringutil_h
00020 #define stringutil_h
00021
00022 #include <iosfwd>
00023
00024 #include <string>
00025 #include <vector>
00026
00027 namespace strutil {
00028
00029 extern unsigned split( const std::string line_tv,
00030 std::vector<std::string> & words_Vtr,
00031 const std::string sep_tv = " \t",
00032 const bool singlesep_bv = false );
00033
00034 }
00035 #endif // stringutil_h