X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/244d7851457bfd373983edfb00c80760239dc8ab..4a8bc21517c2e7759a0036d879338f84ed6bf56e:/src/xbt/xbt_os_file.cpp diff --git a/src/xbt/xbt_os_file.cpp b/src/xbt/xbt_os_file.cpp index 1248350f79..edf22816ae 100644 --- a/src/xbt/xbt_os_file.cpp +++ b/src/xbt/xbt_os_file.cpp @@ -1,6 +1,6 @@ /* xbt_os_file.cpp -- portable interface to file-related functions */ -/* Copyright (c) 2017. The SimGrid Team. +/* Copyright (c) 2017-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -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]);