#ifndef _utils_H #define _utils_H #include #include #include using namespace std; std::vector split(const std::string &text, char sep) ; vector key_to_vector_int(const string& key); void save_labels_map(std::map > * index,const char * fileName); std::map >* load_labels_map(const char * fileName); inline bool file_exists (const std::string& name) { ifstream f(name.c_str()); return f.good(); } #endif /* _utils_H */