camcom 1.0.0-pre2
 
Loading...
Searching...
No Matches
find_file.hpp
Go to the documentation of this file.
1
8
9#ifndef CAMCOM_COMMON_FIND_FILE_HPP
10#define CAMCOM_COMMON_FIND_FILE_HPP
11
12#include <string>
13
14namespace camcom::common {
15
17std::string ExpandPath(const std::string& path);
18
33std::string FindFile(const std::string& path,
34 const std::string& referrer = "");
35
36} // namespace camcom::common
37
38#endif // CAMCOM_COMMON_FIND_FILE_HPP
Definition adapterBase.cpp:18
std::string FindFile(const std::string &path, const std::string &referrer)
Definition find_file.cpp:162
std::string ExpandPath(const std::string &path)
Expand environment variables ($VAR, ${VAR}) and ~ in a path string.
Definition find_file.cpp:28