1292932Sdim//===-- CXXFunctionPointer.h ------------------------------------*- C++ -*-===//
2292932Sdim//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6292932Sdim//
7292932Sdim//===----------------------------------------------------------------------===//
8292932Sdim
9292932Sdim#ifndef liblldb_CXXFunctionPointer_h_
10292932Sdim#define liblldb_CXXFunctionPointer_h_
11292932Sdim
12292932Sdim#include "lldb/lldb-forward.h"
13292932Sdim
14292932Sdimnamespace lldb_private {
15314564Sdimnamespace formatters {
16314564Sdimbool CXXFunctionPointerSummaryProvider(ValueObject &valobj, Stream &stream,
17314564Sdim                                       const TypeSummaryOptions &options);
18314564Sdim} // namespace formatters
19292932Sdim} // namespace lldb_private
20292932Sdim
21292932Sdim#endif // liblldb_CXXFunctionPointer_h_
22