//===-- FormatManager.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_FORMATMANAGER_H #define LLDB_DATAFORMATTERS_FORMATMANAGER_H #include <atomic> #include <initializer_list> #include <map> #include <mutex> #include <vector> #include "lldb/lldb-enumerations.h" #include "lldb/lldb-public.h" #include "lldb/DataFormatters/FormatCache.h" #include "lldb/DataFormatters/FormatClasses.h" #include "lldb/DataFormatters/FormattersContainer.h" #include "lldb/DataFormatters/LanguageCategory.h" #include "lldb/DataFormatters/TypeCategory.h" #include "lldb/DataFormatters/TypeCategoryMap.h" namespace lldb_private { // this file (and its. cpp) contain the low-level implementation of LLDB Data // Visualization class DataVisualization is the high-level front-end of this // feature clients should refer to that class as the entry-point into the data // formatters unless they have a good reason to bypass it and prefer to use // this file's objects directly class FormatManager : public IFormatChangeListener { … }; } // namespace lldb_private #endif // LLDB_DATAFORMATTERS_FORMATMANAGER_H