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/Stream.h" 14 #include "lldb/Core/ValueObject.h" 15 #include "lldb/DataFormatters/TypeSummary.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_ 34