1*f6aab3d8Srobert //===-- LibCxx.h -----------------------------------------------*- C++ -*-===// 2*f6aab3d8Srobert // 3*f6aab3d8Srobert // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*f6aab3d8Srobert // See https://llvm.org/LICENSE.txt for license information. 5*f6aab3d8Srobert // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*f6aab3d8Srobert // 7*f6aab3d8Srobert //===----------------------------------------------------------------------===// 8*f6aab3d8Srobert 9*f6aab3d8Srobert #ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H 10*f6aab3d8Srobert #define LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H 11*f6aab3d8Srobert 12*f6aab3d8Srobert #include "lldb/Core/ValueObject.h" 13*f6aab3d8Srobert #include "lldb/DataFormatters/TypeSummary.h" 14*f6aab3d8Srobert #include "lldb/Utility/Stream.h" 15*f6aab3d8Srobert 16*f6aab3d8Srobert namespace lldb_private { 17*f6aab3d8Srobert namespace formatters { 18*f6aab3d8Srobert 19*f6aab3d8Srobert bool GenericOptionalSummaryProvider(ValueObject &valobj, Stream &stream, 20*f6aab3d8Srobert const TypeSummaryOptions &options); 21*f6aab3d8Srobert 22*f6aab3d8Srobert } // namespace formatters 23*f6aab3d8Srobert } // namespace lldb_private 24*f6aab3d8Srobert 25*f6aab3d8Srobert #endif // LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H 26