mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
14 lines
243 B
C++
14 lines
243 B
C++
|
|
#ifndef CHAISCRIPT_PARSER_LIB
|
|
#define CHAISCRIPT_PARSER_LIB
|
|
|
|
namespace chaiscript {
|
|
namespace parser {
|
|
class ChaiScript_Parser_Base;
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<chaiscript::parser::ChaiScript_Parser_Base> create_chaiscript_parser();
|
|
|
|
#endif
|