//===--- UnwrappedLineFormatter.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 /// Implements a combinatorial exploration of all the different /// linebreaks unwrapped lines can be formatted in. /// //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_FORMAT_UNWRAPPEDLINEFORMATTER_H #define LLVM_CLANG_LIB_FORMAT_UNWRAPPEDLINEFORMATTER_H #include "ContinuationIndenter.h" namespace clang { namespace format { class ContinuationIndenter; class WhitespaceManager; class UnwrappedLineFormatter { … }; } // end namespace format } // end namespace clang #endif // LLVM_CLANG_LIB_FORMAT_UNWRAPPEDLINEFORMATTER_H