//===--- AffectedRangeManager.h - Format C++ code ---------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// /// /// \file /// AffectedRangeManager class manages affected ranges in the code. /// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H #define LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H #include "clang/Basic/SourceManager.h" namespace clang { namespace format { struct FormatToken; class AnnotatedLine; class AffectedRangeManager { … }; } // namespace format } // namespace clang #endif // LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H