]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
MFV r329715: 8997 ztest assertion failure in zil_lwb_write_issue
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / Language / ObjC / CF.h
1 //===-- CF.h ---------------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_CF_h_
11 #define liblldb_CF_h_
12
13 #include "lldb/Core/ValueObject.h"
14 #include "lldb/DataFormatters/TypeSummary.h"
15 #include "lldb/Utility/Stream.h"
16
17 namespace lldb_private {
18 namespace formatters {
19 bool CFBagSummaryProvider(ValueObject &valobj, Stream &stream,
20                           const TypeSummaryOptions &options);
21
22 bool CFBinaryHeapSummaryProvider(ValueObject &valobj, Stream &stream,
23                                  const TypeSummaryOptions &options);
24
25 bool CFBitVectorSummaryProvider(ValueObject &valobj, Stream &stream,
26                                 const TypeSummaryOptions &options);
27
28 bool CFAbsoluteTimeSummaryProvider(ValueObject &valobj, Stream &stream,
29                                    const TypeSummaryOptions &options);
30 } // namespace formatters
31 } // namespace lldb_private
32
33 #endif // liblldb_CF_h_