1 //===-- CoreMedia.h -----------------------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 
11 #ifndef liblldb_CoreMedia_h_
12 #define liblldb_CoreMedia_h_
13 
14 #include "lldb/Core/Stream.h"
15 #include "lldb/Core/ValueObject.h"
16 #include "lldb/DataFormatters/TypeSummary.h"
17 
18 namespace lldb_private {
19 namespace formatters {
20 
21 bool CMTimeSummaryProvider(ValueObject &valobj, Stream &stream,
22                            const TypeSummaryOptions &options);
23 } // namespace formatters
24 } // namespace lldb_private
25 
26 #endif // liblldb_CF_h_
27