//===-- DataVisualization.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_DATAFORMATTERS_DATAVISUALIZATION_H #define LLDB_DATAFORMATTERS_DATAVISUALIZATION_H #include "lldb/DataFormatters/FormatClasses.h" #include "lldb/DataFormatters/FormatManager.h" #include "lldb/Utility/ConstString.h" namespace lldb_private { // this class is the high-level front-end of LLDB Data Visualization code in // FormatManager.h/cpp is the low-level implementation of this feature clients // should refer to this class as the entry-point into the data formatters // unless they have a good reason to bypass this and go to the backend class DataVisualization { … }; } // namespace lldb_private #endif // LLDB_DATAFORMATTERS_DATAVISUALIZATION_H