Sha256: 857175b1dd187f0e6a487cb066efa01d3f64a40095f40ce4357147b9b4944196
Contents?: true
Size: 656 Bytes
Versions: 3
Compression:
Stored size: 656 Bytes
Contents
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ #pragma once #include "XPathElement.h" namespace antlr4 { namespace tree { namespace xpath { class ANTLR4CPP_PUBLIC XPathTokenAnywhereElement : public XPathElement { protected: int tokenType = 0; public: XPathTokenAnywhereElement(const std::string &tokenName, int tokenType); virtual std::vector<ParseTree *> evaluate(ParseTree *t) override; }; } // namespace xpath } // namespace tree } // namespace antlr4
Version data entries
3 entries across 3 versions & 1 rubygems