blob: 61dcf992ef7ee38f36979a54ca3ad32056dbe144 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PARSERSETTINGS_H_
#define PARSERSETTINGS_H_
#include <string>
extern std::string librarydir;
extern int parser_error_pos;
void parser_init(const std::string &applicationpath);
#endif
|