#ifndef _utl_String_h_ #define _utl_String_h_ // $Id$ #include #include namespace utl { namespace String { std::vector Split(const std::string& str, const char* const separators = " "); } } #endif