mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
//===--- AST/PlatformKind.h - Swift Language Platform Kinds -----*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2025 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// This file defines the platform kinds for API availability.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_AST_PLATFORM_KIND_H
|
|
#define SWIFT_AST_PLATFORM_KIND_H
|
|
|
|
/// This header is included in a bridging header. Be *very* careful with what
|
|
/// you include here! See include caveats in `ASTBridging.h`.
|
|
#include "swift/Basic/SwiftBridging.h"
|
|
#include <stdint.h>
|
|
|
|
namespace swift {
|
|
|
|
/// Available platforms for the availability attribute.
|
|
enum class ENUM_EXTENSIBILITY_ATTR(closed) PlatformKind : uint8_t {
|
|
none,
|
|
#define AVAILABILITY_PLATFORM(X, PrettyName) X,
|
|
#include "swift/AST/PlatformKinds.def"
|
|
};
|
|
|
|
} // end namespace swift
|
|
|
|
#endif // SWIFT_AST_PLATFORM_KIND_H
|