This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Purpose: | |
| // Simplify rule, rule_definition, parse_rule, BOOST_SPIRIT_DEFINE. | |
| //References: | |
| // [inline] | |
| // https://isocpp.org/wiki/faq/inline-functions#where-to-put-inline-keyword | |
| // https://stackoverflow.com/questions/3992980/c-inline-member-function-in-cpp-file | |
| //=========================================================================== | |
| #include "toy_rule_parse_rule.hpp" | |
| /////////////////////////////////////////////////////////////////////////////// | |
| // test code |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (C) 2024 T. Zachary Laine | |
| // | |
| // Distributed under the Boost Software License, Version 1.0. (See | |
| // accompanying file LICENSE_1_0.txt or copy at | |
| // http://www.boost.org/LICENSE_1_0.txt) | |
| #ifndef BOOST_PARSER_PARSER_HPP | |
| #define BOOST_PARSER_PARSER_HPP | |
| #include <boost/parser/parser_fwd.hpp> | |
| #include <boost/parser/concepts.hpp> |
OlderNewer