xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/CF.h (revision dda2819751e49c83612958492e38917049128b41)
1061da546Spatrick //===-- CF.h ---------------------------------------------------*- C++ -*-===//
2061da546Spatrick //
3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information.
5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6061da546Spatrick //
7061da546Spatrick //===----------------------------------------------------------------------===//
8061da546Spatrick 
9*dda28197Spatrick #ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_CF_H
10*dda28197Spatrick #define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_CF_H
11061da546Spatrick 
12061da546Spatrick #include "lldb/Core/ValueObject.h"
13061da546Spatrick #include "lldb/DataFormatters/TypeSummary.h"
14061da546Spatrick #include "lldb/Utility/Stream.h"
15061da546Spatrick 
16061da546Spatrick namespace lldb_private {
17061da546Spatrick namespace formatters {
18061da546Spatrick bool CFBagSummaryProvider(ValueObject &valobj, Stream &stream,
19061da546Spatrick                           const TypeSummaryOptions &options);
20061da546Spatrick 
21061da546Spatrick bool CFBinaryHeapSummaryProvider(ValueObject &valobj, Stream &stream,
22061da546Spatrick                                  const TypeSummaryOptions &options);
23061da546Spatrick 
24061da546Spatrick bool CFBitVectorSummaryProvider(ValueObject &valobj, Stream &stream,
25061da546Spatrick                                 const TypeSummaryOptions &options);
26061da546Spatrick 
27061da546Spatrick bool CFAbsoluteTimeSummaryProvider(ValueObject &valobj, Stream &stream,
28061da546Spatrick                                    const TypeSummaryOptions &options);
29061da546Spatrick } // namespace formatters
30061da546Spatrick } // namespace lldb_private
31061da546Spatrick 
32*dda28197Spatrick #endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_CF_H
33