Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSSet.h
39642 views
//===-- NSSet.h ---------------------------------------------------*- C++1//-*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSET_H10#define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSET_H1112#include "lldb/Core/ValueObject.h"13#include "lldb/DataFormatters/TypeSummary.h"14#include "lldb/DataFormatters/TypeSynthetic.h"15#include "lldb/Utility/ConstString.h"16#include "lldb/Utility/Stream.h"1718namespace lldb_private {19namespace formatters {20template <bool cf_style>21bool NSSetSummaryProvider(ValueObject &valobj, Stream &stream,22const TypeSummaryOptions &options);2324SyntheticChildrenFrontEnd *NSSetSyntheticFrontEndCreator(CXXSyntheticChildren *,25lldb::ValueObjectSP);2627class NSSet_Additionals {28public:29static std::map<ConstString, CXXFunctionSummaryFormat::Callback> &30GetAdditionalSummaries();3132static std::map<ConstString, CXXSyntheticChildren::CreateFrontEndCallback> &33GetAdditionalSynthetics();34};35} // namespace formatters36} // namespace lldb_private3738#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSET_H394041