#ifndef __EXTSTRING_H #define __EXTSTRING_H #include #include namespace segl { int explode(std::string str, std::string delim, std::vector *erg, bool clean=false); std::string trim(std::string t); std::string basename(std::string str); std::string rbasename(std::string str); } // namespace segl #endif