Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
39644 views
//===-- BlockPointer.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_BLOCKPOINTER_H9#define LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_BLOCKPOINTER_H1011#include "lldb/lldb-forward.h"1213namespace lldb_private {14namespace formatters {15bool BlockPointerSummaryProvider(ValueObject &, Stream &,16const TypeSummaryOptions &);1718SyntheticChildrenFrontEnd *19BlockPointerSyntheticFrontEndCreator(CXXSyntheticChildren *,20lldb::ValueObjectSP);21} // namespace formatters22} // namespace lldb_private2324#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_BLOCKPOINTER_H252627