1//===-- LibCxxAtomic.h -------------------------------------------*- C++
2//-*-===//
3//
4// 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
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_LIBCXXATOMIC_H
11#define LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_LIBCXXATOMIC_H
12
13#include "lldb/Core/ValueObject.h"
14#include "lldb/DataFormatters/TypeSummary.h"
15#include "lldb/DataFormatters/TypeSynthetic.h"
16#include "lldb/Utility/Stream.h"
17
18namespace lldb_private {
19namespace formatters {
20
21lldb::ValueObjectSP GetLibCxxAtomicValue(ValueObject &valobj);
22
23bool LibCxxAtomicSummaryProvider(ValueObject &valobj, Stream &stream,
24 const TypeSummaryOptions &options);
25
26SyntheticChildrenFrontEnd *
27LibcxxAtomicSyntheticFrontEndCreator(CXXSyntheticChildren *,
28 lldb::ValueObjectSP);
29
30} // namespace formatters
31} // namespace lldb_private
32
33#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_CPLUSPLUS_LIBCXXATOMIC_H
34

source code of lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h