diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-05-19 20:14:05 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-05-19 20:14:05 (GMT) |
commit | 24e726fb58d2eca9e18575ffb76e547f958608de (patch) | |
tree | 18ca1837beb4bfea67c3d5a46f3cc4fee4689165 /src/parsersettings.h | |
parent | e25fff81af72a31f6118f4840b65193aa0ec1d0a (diff) |
first refactoring towards fixing issue364
Diffstat (limited to 'src/parsersettings.h')
-rw-r--r-- | src/parsersettings.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/parsersettings.h b/src/parsersettings.h index 007aa9c..4c74a87 100644 --- a/src/parsersettings.h +++ b/src/parsersettings.h @@ -2,11 +2,13 @@ #define PARSERSETTINGS_H_ #include <string> +#include "boosty.h" extern int parser_error_pos; void parser_init(const std::string &applicationpath); void add_librarydir(const std::string &libdir); -std::string locate_file(const std::string &filename); +fs::path search_libs(const std::string &filename); +fs::path find_valid_path( fs::path sourcepath, std::string filename ); #endif |