blob: b725066445520d52594038552154f98d3cdb90ee [file] [log] [blame]
Kate Stoneb9c1b512016-09-06 20:57:50 +00001//===-- LibCxxAtomic.h -------------------------------------------*- C++
2//-*-===//
Enrico Granata75995b52016-02-12 22:18:24 +00003//
Chandler Carruth2946cd72019-01-19 08:50:56 +00004// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Enrico Granata75995b52016-02-12 22:18:24 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_LibCxxAtomic_h_
11#define liblldb_LibCxxAtomic_h_
12
Enrico Granata75995b52016-02-12 22:18:24 +000013#include "lldb/Core/ValueObject.h"
14#include "lldb/DataFormatters/TypeSummary.h"
15#include "lldb/DataFormatters/TypeSynthetic.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000016#include "lldb/Utility/Stream.h"
Enrico Granata75995b52016-02-12 22:18:24 +000017
18namespace lldb_private {
Kate Stoneb9c1b512016-09-06 20:57:50 +000019namespace formatters {
20bool LibCxxAtomicSummaryProvider(ValueObject &valobj, Stream &stream,
21 const TypeSummaryOptions &options);
22
23SyntheticChildrenFrontEnd *
24LibcxxAtomicSyntheticFrontEndCreator(CXXSyntheticChildren *,
25 lldb::ValueObjectSP);
26
27} // namespace formatters
Enrico Granata75995b52016-02-12 22:18:24 +000028} // namespace lldb_private
29
30#endif // liblldb_LibCxxAtomic_h_