//===- ObjCRuntime.h - Objective-C Runtime Configuration --------*- 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 // //===----------------------------------------------------------------------===// // /// \file /// Defines types useful for describing an Objective-C runtime. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_BASIC_OBJCRUNTIME_H #define LLVM_CLANG_BASIC_OBJCRUNTIME_H #include "clang/Basic/LLVM.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/HashBuilder.h" #include "llvm/Support/VersionTuple.h" #include "llvm/TargetParser/Triple.h" #include <string> namespace clang { /// The basic abstraction for the target Objective-C runtime. class ObjCRuntime { … }; raw_ostream &operator<<(raw_ostream &out, const ObjCRuntime &value); } // namespace clang #endif // LLVM_CLANG_BASIC_OBJCRUNTIME_H