ALib C++ Library
Library Version: 2412 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
parser.cpp
1// #################################################################################################
2// ALib C++ Library
3//
4// Copyright 2013-2024 A-Worx GmbH, Germany
5// Published under 'Boost Software License' (a free software license, see LICENSE.txt)
6// #################################################################################################
8
9#if !DOXYGEN
13#endif // !DOXYGEN
14
15
16namespace alib { namespace expressions { namespace detail {
17
18// static creation method
20{
21 return compiler.allocator().New<detail::ParserImpl>(compiler, compiler.allocator );
22}
23
24
25}}} // namespace [alib::expressions::detail]
Definition alib.cpp:69
This detail class constitutes an abstract base class for expression parsers.
Definition parser.hpp:24
static ALIB_API Parser * Create(Compiler &compiler)
Definition parser.cpp:19