Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/Generic.h
39644 views
//===-- LibCxx.h -----------------------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H9#define LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H1011#include "lldb/Core/ValueObject.h"12#include "lldb/DataFormatters/TypeSummary.h"13#include "lldb/Utility/Stream.h"1415namespace lldb_private {16namespace formatters {1718bool GenericOptionalSummaryProvider(ValueObject &valobj, Stream &stream,19const TypeSummaryOptions &options);2021} // namespace formatters22} // namespace lldb_private2324#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_GENERIC_H252627