// Public domain, by Christopher Diggins // http://www.cdiggins.com // // These are the neccessary files for the YARD metaprogramming // recursive descent parsing library. #ifndef YARD_HPP #define YARD_HPP #include #include #include #include #include #include "yard_tree.hpp" #include "yard_parser.hpp" #include "yard_base_grammar.hpp" #include "yard_char_set.hpp" #include "yard_text_grammar.hpp" #endif