2016-09-07 04:57:50 +08:00
|
|
|
//===-- LibCxxAtomic.h -------------------------------------------*- C++
|
|
|
|
//-*-===//
|
2016-02-13 06:18:24 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_LibCxxAtomic_h_
|
|
|
|
#define liblldb_LibCxxAtomic_h_
|
|
|
|
|
|
|
|
#include "lldb/Core/ValueObject.h"
|
|
|
|
#include "lldb/DataFormatters/TypeSummary.h"
|
|
|
|
#include "lldb/DataFormatters/TypeSynthetic.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/Stream.h"
|
2016-02-13 06:18:24 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
2016-09-07 04:57:50 +08:00
|
|
|
namespace formatters {
|
|
|
|
bool LibCxxAtomicSummaryProvider(ValueObject &valobj, Stream &stream,
|
|
|
|
const TypeSummaryOptions &options);
|
|
|
|
|
|
|
|
SyntheticChildrenFrontEnd *
|
|
|
|
LibcxxAtomicSyntheticFrontEndCreator(CXXSyntheticChildren *,
|
|
|
|
lldb::ValueObjectSP);
|
|
|
|
|
|
|
|
} // namespace formatters
|
2016-02-13 06:18:24 +08:00
|
|
|
} // namespace lldb_private
|
|
|
|
|
|
|
|
#endif // liblldb_LibCxxAtomic_h_
|