X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/611d822b02f836d7abe031cced6adc4281ef4356..f968cbbb699423fa252994ff42de77f8671ac7eb:/src/xbt/xbt_os_file.cpp diff --git a/src/xbt/xbt_os_file.cpp b/src/xbt/xbt_os_file.cpp index f569399136..edf22816ae 100644 --- a/src/xbt/xbt_os_file.cpp +++ b/src/xbt/xbt_os_file.cpp @@ -15,14 +15,14 @@ #include #include /* POSIX dirname */ -std::string simgrid::xbt::Path::getDirname() +std::string simgrid::xbt::Path::get_dir_name() { std::string p(path_); char *res = dirname(&p[0]); return std::string(res, strlen(res)); } -std::string simgrid::xbt::Path::getBasename() +std::string simgrid::xbt::Path::get_base_name() { std::string p(path_); char *res = basename(&p[0]);