00001 #ifndef AFL_UTIL_STRINGS_H 00002 #define AFL_UTIL_STRINGS_H 00003 00004 #include "afltypes.h" 00005 00006 #include <string> 00007 00008 namespace afl 00009 { 00010 namespace util 00011 { 00012 namespace strings 00013 { 00020 Point makePoint(const std::string& csv); 00021 00026 std::string trim( const std::string& s ); 00027 } 00028 } 00029 } 00030 00031 #endif 00032