//===--- NSAPI.h - NSFoundation APIs ----------------------------*- 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 LLVM_CLANG_AST_NSAPI_H #define LLVM_CLANG_AST_NSAPI_H #include "clang/Basic/IdentifierTable.h" #include "llvm/ADT/ArrayRef.h" #include <optional> namespace clang { class ASTContext; class ObjCInterfaceDecl; class QualType; class Expr; // Provides info and caches identifiers/selectors for NSFoundation API. class NSAPI { … }; } // end namespace clang #endif // LLVM_CLANG_AST_NSAPI_H