diff options
Diffstat (limited to 'clang-tools-extra/clang-query/QueryParser.h')
-rw-r--r-- | clang-tools-extra/clang-query/QueryParser.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-query/QueryParser.h b/clang-tools-extra/clang-query/QueryParser.h new file mode 100644 index 00000000000..00c95fcf2c8 --- /dev/null +++ b/clang-tools-extra/clang-query/QueryParser.h @@ -0,0 +1,27 @@ +//===--- QueryParser.h - clang-query ----------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_QUERY_QUERY_PARSER_H +#define LLVM_CLANG_TOOLS_EXTRA_CLANG_QUERY_QUERY_PARSER_H + +#include "Query.h" + +namespace clang { +namespace query { + +/// \brief Parse \p Line. +/// +/// \return A reference to the parsed query object, which may be an +/// \c InvalidQuery if a parse error occurs. +QueryRef ParseQuery(StringRef Line); + +} // namespace query +} // namespace clang + +#endif |