PhoenixMock  1.8.7
Tools to split/merge/print mock used in Phoenix
path_completion.h
Go to the documentation of this file.
1 /***************************************
2  Auteur : Pierre Aubert
3  Mail : pierre.aubert@lapp.in2p3.fr
4  Licence : CeCILL-C
5 ****************************************/
6 
7 #ifndef __PATH_COMPLETION_H__
8 #define __PATH_COMPLETION_H__
9 
10 #include <string>
11 
12 
13 std::string path_completion_all(const std::string & basePath);
14 std::string path_completion_dirOnly(const std::string & basePath);
15 
16 
17 #endif
path_completion_all
std::string path_completion_all(const std::string &basePath)
Return all path/files which match the basePath.
Definition: path_completion.cpp:41
path_completion_dirOnly
std::string path_completion_dirOnly(const std::string &basePath)
Return all directories only which match the basePath.
Definition: path_completion.cpp:87