//===- TokenBufferTokenManager.h -----------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLING_SYNTAX_TOKEN_BUFFER_TOKEN_MANAGER_H #define LLVM_CLANG_TOOLING_SYNTAX_TOKEN_BUFFER_TOKEN_MANAGER_H #include "clang/Tooling/Syntax/TokenManager.h" #include "clang/Tooling/Syntax/Tokens.h" namespace clang { namespace syntax { /// A TokenBuffer-powered token manager. /// It tracks the underlying token buffers, source manager, etc. class TokenBufferTokenManager : public TokenManager { … }; } // namespace syntax } // namespace clang #endif // LLVM_CLANG_TOOLING_SYNTAX_TOKEN_BUFFER_TOKEN_MANAGER_H