blob: 52172b6ff91dd7c985911b4d5e93882d8cabb433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef PARSERSETTINGS_H_
#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);
fs::path search_libs(const fs::path &localpath);
fs::path find_valid_path(const fs::path &sourcepath,
const fs::path &localpath,
const std::vector<std::string> *openfilenames = NULL);
#endif
|