//===-- StructuredDataImpl.h ------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_CORE_STRUCTUREDDATAIMPL_H #define LLDB_CORE_STRUCTUREDDATAIMPL_H #include "lldb/Target/StructuredDataPlugin.h" #include "lldb/Utility/Event.h" #include "lldb/Utility/Status.h" #include "lldb/Utility/Stream.h" #include "lldb/Utility/StructuredData.h" #include "lldb/lldb-enumerations.h" #include "lldb/lldb-forward.h" #include "llvm/ADT/StringRef.h" #pragma mark-- #pragma mark StructuredDataImpl namespace lldb_private { class StructuredDataImpl { … }; } // namespace lldb_private #endif