X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/172a73b13fe909117c7fbf3d69d4ce5e87efdbc6..332d30cedc2179b93305a6d2011b83b6e7e0a2c0:/include/xbt/file.hpp diff --git a/include/xbt/file.hpp b/include/xbt/file.hpp index e642320631..159891a03d 100644 --- a/include/xbt/file.hpp +++ b/include/xbt/file.hpp @@ -1,4 +1,4 @@ -/* 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 @@ -19,11 +19,11 @@ public: explicit Path(std::string path): path_(std::move(path)) {} /** @brief Returns the full path name */ - std::string getName() { return path_; } + std::string get_name() { return path_; } /** @brief Returns the directory component of a path (reimplementation of POSIX dirname) */ - std::string getDirname(); + std::string get_dir_name(); /** @brief Returns the file component of a path (reimplementation of POSIX basename) */ - std::string getBasename(); + std::string get_base_name(); private: std::string path_;