| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 1 | //===-- LibCxxAtomic.h -------------------------------------------*- C++ |
| 2 | //-*-===// |
| Enrico Granata | 75995b5 | 2016-02-12 22:18:24 +0000 | [diff] [blame] | 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_LibCxxAtomic_h_ |
| 12 | #define liblldb_LibCxxAtomic_h_ |
| 13 | |
| Enrico Granata | 75995b5 | 2016-02-12 22:18:24 +0000 | [diff] [blame] | 14 | #include "lldb/Core/ValueObject.h" |
| 15 | #include "lldb/DataFormatters/TypeSummary.h" |
| 16 | #include "lldb/DataFormatters/TypeSynthetic.h" |
| Zachary Turner | bf9a773 | 2017-02-02 21:39:50 +0000 | [diff] [blame] | 17 | #include "lldb/Utility/Stream.h" |
| Enrico Granata | 75995b5 | 2016-02-12 22:18:24 +0000 | [diff] [blame] | 18 | |
| 19 | namespace lldb_private { |
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 20 | namespace formatters { |
| 21 | bool LibCxxAtomicSummaryProvider(ValueObject &valobj, Stream &stream, |
| 22 | const TypeSummaryOptions &options); |
| 23 | |
| 24 | SyntheticChildrenFrontEnd * |
| 25 | LibcxxAtomicSyntheticFrontEndCreator(CXXSyntheticChildren *, |
| 26 | lldb::ValueObjectSP); |
| 27 | |
| 28 | } // namespace formatters |
| Enrico Granata | 75995b5 | 2016-02-12 22:18:24 +0000 | [diff] [blame] | 29 | } // namespace lldb_private |
| 30 | |
| 31 | #endif // liblldb_LibCxxAtomic_h_ |