Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
critical bugfix
[simgrid.git] / src / xbt / xbt_os_file.cpp
index 1248350f79cb52b44fc8d1327a534dc8687582ea..edf22816aea7cfe60040ddcab1af68935d980cb6 100644 (file)
@@ -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
 #include <cstring>
 #include <libgen.h> /* 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]);