22 lines
731 B
Objective-C
22 lines
731 B
Objective-C
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef OBJECTIVE_C_SRC_FOUNDATION_H_
|
|
#define OBJECTIVE_C_SRC_FOUNDATION_H_
|
|
|
|
#import <Foundation/NSArray.h>
|
|
#import <Foundation/NSData.h>
|
|
#import <Foundation/NSDate.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
#import <Foundation/NSError.h>
|
|
#import <Foundation/NSStream.h>
|
|
#import <Foundation/NSKeyValueObserving.h>
|
|
#import <Foundation/NSMethodSignature.h>
|
|
#import <Foundation/NSObject.h>
|
|
#import <Foundation/NSSet.h>
|
|
#import <Foundation/NSString.h>
|
|
#import <Foundation/NSURL.h>
|
|
|
|
#endif // OBJECTIVE_C_SRC_FOUNDATION_H_
|