|
@ -0,0 +1,520 @@
|
|
1
|
#if 0
|
|
2
|
#elif defined(__arm64__) && __arm64__
|
|
3
|
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
|
|
4
|
#ifndef IPUMOBILEUI_SWIFT_H
|
|
5
|
#define IPUMOBILEUI_SWIFT_H
|
|
6
|
#pragma clang diagnostic push
|
|
7
|
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
8
|
|
|
9
|
#if !defined(__has_include)
|
|
10
|
# define __has_include(x) 0
|
|
11
|
#endif
|
|
12
|
#if !defined(__has_attribute)
|
|
13
|
# define __has_attribute(x) 0
|
|
14
|
#endif
|
|
15
|
#if !defined(__has_feature)
|
|
16
|
# define __has_feature(x) 0
|
|
17
|
#endif
|
|
18
|
#if !defined(__has_warning)
|
|
19
|
# define __has_warning(x) 0
|
|
20
|
#endif
|
|
21
|
|
|
22
|
#if __has_include(<swift/objc-prologue.h>)
|
|
23
|
# include <swift/objc-prologue.h>
|
|
24
|
#endif
|
|
25
|
|
|
26
|
#pragma clang diagnostic ignored "-Wauto-import"
|
|
27
|
#include <Foundation/Foundation.h>
|
|
28
|
#include <stdint.h>
|
|
29
|
#include <stddef.h>
|
|
30
|
#include <stdbool.h>
|
|
31
|
|
|
32
|
#if !defined(SWIFT_TYPEDEFS)
|
|
33
|
# define SWIFT_TYPEDEFS 1
|
|
34
|
# if __has_include(<uchar.h>)
|
|
35
|
# include <uchar.h>
|
|
36
|
# elif !defined(__cplusplus)
|
|
37
|
typedef uint_least16_t char16_t;
|
|
38
|
typedef uint_least32_t char32_t;
|
|
39
|
# endif
|
|
40
|
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
41
|
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
42
|
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
43
|
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
44
|
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
45
|
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
46
|
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
47
|
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
48
|
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
49
|
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
50
|
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
51
|
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
52
|
#endif
|
|
53
|
|
|
54
|
#if !defined(SWIFT_PASTE)
|
|
55
|
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
56
|
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
57
|
#endif
|
|
58
|
#if !defined(SWIFT_METATYPE)
|
|
59
|
# define SWIFT_METATYPE(X) Class
|
|
60
|
#endif
|
|
61
|
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
62
|
# if __has_feature(objc_class_property)
|
|
63
|
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
64
|
# else
|
|
65
|
# define SWIFT_CLASS_PROPERTY(...)
|
|
66
|
# endif
|
|
67
|
#endif
|
|
68
|
|
|
69
|
#if __has_attribute(objc_runtime_name)
|
|
70
|
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
71
|
#else
|
|
72
|
# define SWIFT_RUNTIME_NAME(X)
|
|
73
|
#endif
|
|
74
|
#if __has_attribute(swift_name)
|
|
75
|
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
76
|
#else
|
|
77
|
# define SWIFT_COMPILE_NAME(X)
|
|
78
|
#endif
|
|
79
|
#if __has_attribute(objc_method_family)
|
|
80
|
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
81
|
#else
|
|
82
|
# define SWIFT_METHOD_FAMILY(X)
|
|
83
|
#endif
|
|
84
|
#if __has_attribute(noescape)
|
|
85
|
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
86
|
#else
|
|
87
|
# define SWIFT_NOESCAPE
|
|
88
|
#endif
|
|
89
|
#if __has_attribute(ns_consumed)
|
|
90
|
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
91
|
#else
|
|
92
|
# define SWIFT_RELEASES_ARGUMENT
|
|
93
|
#endif
|
|
94
|
#if __has_attribute(warn_unused_result)
|
|
95
|
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
96
|
#else
|
|
97
|
# define SWIFT_WARN_UNUSED_RESULT
|
|
98
|
#endif
|
|
99
|
#if __has_attribute(noreturn)
|
|
100
|
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
101
|
#else
|
|
102
|
# define SWIFT_NORETURN
|
|
103
|
#endif
|
|
104
|
#if !defined(SWIFT_CLASS_EXTRA)
|
|
105
|
# define SWIFT_CLASS_EXTRA
|
|
106
|
#endif
|
|
107
|
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
108
|
# define SWIFT_PROTOCOL_EXTRA
|
|
109
|
#endif
|
|
110
|
#if !defined(SWIFT_ENUM_EXTRA)
|
|
111
|
# define SWIFT_ENUM_EXTRA
|
|
112
|
#endif
|
|
113
|
#if !defined(SWIFT_CLASS)
|
|
114
|
# if __has_attribute(objc_subclassing_restricted)
|
|
115
|
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
116
|
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
117
|
# else
|
|
118
|
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
119
|
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
120
|
# endif
|
|
121
|
#endif
|
|
122
|
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
123
|
# if __has_attribute(objc_class_stub)
|
|
124
|
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
125
|
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
126
|
# else
|
|
127
|
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
128
|
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
129
|
# endif
|
|
130
|
#endif
|
|
131
|
|
|
132
|
#if !defined(SWIFT_PROTOCOL)
|
|
133
|
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
134
|
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
135
|
#endif
|
|
136
|
|
|
137
|
#if !defined(SWIFT_EXTENSION)
|
|
138
|
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
139
|
#endif
|
|
140
|
|
|
141
|
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
142
|
# if __has_attribute(objc_designated_initializer)
|
|
143
|
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
144
|
# else
|
|
145
|
# define OBJC_DESIGNATED_INITIALIZER
|
|
146
|
# endif
|
|
147
|
#endif
|
|
148
|
#if !defined(SWIFT_ENUM_ATTR)
|
|
149
|
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
150
|
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
151
|
# else
|
|
152
|
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
153
|
# endif
|
|
154
|
#endif
|
|
155
|
#if !defined(SWIFT_ENUM)
|
|
156
|
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
157
|
# if __has_feature(generalized_swift_name)
|
|
158
|
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
159
|
# else
|
|
160
|
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
161
|
# endif
|
|
162
|
#endif
|
|
163
|
#if !defined(SWIFT_UNAVAILABLE)
|
|
164
|
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
165
|
#endif
|
|
166
|
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
167
|
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
168
|
#endif
|
|
169
|
#if !defined(SWIFT_AVAILABILITY)
|
|
170
|
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
171
|
#endif
|
|
172
|
#if !defined(SWIFT_WEAK_IMPORT)
|
|
173
|
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
174
|
#endif
|
|
175
|
#if !defined(SWIFT_DEPRECATED)
|
|
176
|
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
177
|
#endif
|
|
178
|
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
179
|
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
180
|
#endif
|
|
181
|
#if __has_feature(attribute_diagnose_if_objc)
|
|
182
|
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
183
|
#else
|
|
184
|
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
185
|
#endif
|
|
186
|
#if !defined(IBSegueAction)
|
|
187
|
# define IBSegueAction
|
|
188
|
#endif
|
|
189
|
#if __has_feature(modules)
|
|
190
|
#if __has_warning("-Watimport-in-framework-header")
|
|
191
|
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
192
|
#endif
|
|
193
|
@import ObjectiveC;
|
|
194
|
@import UIKit;
|
|
195
|
#endif
|
|
196
|
|
|
197
|
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
198
|
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
199
|
#if __has_warning("-Wpragma-clang-attribute")
|
|
200
|
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
201
|
#endif
|
|
202
|
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
203
|
#pragma clang diagnostic ignored "-Wnullability"
|
|
204
|
|
|
205
|
#if __has_attribute(external_source_symbol)
|
|
206
|
# pragma push_macro("any")
|
|
207
|
# undef any
|
|
208
|
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="IPUMobileUI",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
209
|
# pragma pop_macro("any")
|
|
210
|
#endif
|
|
211
|
|
|
212
|
@class NSString;
|
|
213
|
|
|
214
|
SWIFT_CLASS("_TtC11IPUMobileUI18IPUSandBoxFileItem")
|
|
215
|
@interface IPUSandBoxFileItem : NSObject
|
|
216
|
@property (nonatomic, copy) NSString * _Nonnull name;
|
|
217
|
@property (nonatomic, copy) NSString * _Nonnull path;
|
|
218
|
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
219
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
220
|
@end
|
|
221
|
|
|
222
|
@class NSBundle;
|
|
223
|
@class NSCoder;
|
|
224
|
|
|
225
|
SWIFT_CLASS("_TtC11IPUMobileUI32IPUSandBoxFileListViewController")
|
|
226
|
@interface IPUSandBoxFileListViewController : UIViewController
|
|
227
|
- (void)viewDidLoad;
|
|
228
|
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
|
|
229
|
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
230
|
@end
|
|
231
|
|
|
232
|
@class UITableView;
|
|
233
|
@class NSNumber;
|
|
234
|
@class NSIndexPath;
|
|
235
|
@class UITableViewCell;
|
|
236
|
|
|
237
|
@interface IPUSandBoxFileListViewController (SWIFT_EXTENSION(IPUMobileUI)) <UITableViewDataSource, UITableViewDelegate>
|
|
238
|
- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT;
|
|
239
|
- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT;
|
|
240
|
- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
|
|
241
|
@end
|
|
242
|
|
|
243
|
|
|
244
|
SWIFT_CLASS("_TtC11IPUMobileUI17IPUSandboxBrowser")
|
|
245
|
@interface IPUSandboxBrowser : UINavigationController
|
|
246
|
@property (nonatomic, copy) void (^ _Nullable didSelectFile)(IPUSandBoxFileItem * _Nonnull);
|
|
247
|
- (nonnull instancetype)init;
|
|
248
|
- (nonnull instancetype)initWithInitialPath:(NSString * _Nonnull)initialPath closeAfterSelected:(BOOL)closeAfterSelected;
|
|
249
|
- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);
|
|
250
|
- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;
|
|
251
|
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
|
|
252
|
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
253
|
@end
|
|
254
|
|
|
255
|
#if __has_attribute(external_source_symbol)
|
|
256
|
# pragma clang attribute pop
|
|
257
|
#endif
|
|
258
|
#pragma clang diagnostic pop
|
|
259
|
#endif
|
|
260
|
|
|
261
|
#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
|
|
262
|
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
|
|
263
|
#ifndef IPUMOBILEUI_SWIFT_H
|
|
264
|
#define IPUMOBILEUI_SWIFT_H
|
|
265
|
#pragma clang diagnostic push
|
|
266
|
#pragma clang diagnostic ignored "-Wgcc-compat"
|
|
267
|
|
|
268
|
#if !defined(__has_include)
|
|
269
|
# define __has_include(x) 0
|
|
270
|
#endif
|
|
271
|
#if !defined(__has_attribute)
|
|
272
|
# define __has_attribute(x) 0
|
|
273
|
#endif
|
|
274
|
#if !defined(__has_feature)
|
|
275
|
# define __has_feature(x) 0
|
|
276
|
#endif
|
|
277
|
#if !defined(__has_warning)
|
|
278
|
# define __has_warning(x) 0
|
|
279
|
#endif
|
|
280
|
|
|
281
|
#if __has_include(<swift/objc-prologue.h>)
|
|
282
|
# include <swift/objc-prologue.h>
|
|
283
|
#endif
|
|
284
|
|
|
285
|
#pragma clang diagnostic ignored "-Wauto-import"
|
|
286
|
#include <Foundation/Foundation.h>
|
|
287
|
#include <stdint.h>
|
|
288
|
#include <stddef.h>
|
|
289
|
#include <stdbool.h>
|
|
290
|
|
|
291
|
#if !defined(SWIFT_TYPEDEFS)
|
|
292
|
# define SWIFT_TYPEDEFS 1
|
|
293
|
# if __has_include(<uchar.h>)
|
|
294
|
# include <uchar.h>
|
|
295
|
# elif !defined(__cplusplus)
|
|
296
|
typedef uint_least16_t char16_t;
|
|
297
|
typedef uint_least32_t char32_t;
|
|
298
|
# endif
|
|
299
|
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
|
300
|
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
|
301
|
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
|
302
|
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
|
303
|
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
|
304
|
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
|
305
|
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
|
306
|
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
|
307
|
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
|
308
|
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
|
309
|
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
|
310
|
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
|
311
|
#endif
|
|
312
|
|
|
313
|
#if !defined(SWIFT_PASTE)
|
|
314
|
# define SWIFT_PASTE_HELPER(x, y) x##y
|
|
315
|
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
|
316
|
#endif
|
|
317
|
#if !defined(SWIFT_METATYPE)
|
|
318
|
# define SWIFT_METATYPE(X) Class
|
|
319
|
#endif
|
|
320
|
#if !defined(SWIFT_CLASS_PROPERTY)
|
|
321
|
# if __has_feature(objc_class_property)
|
|
322
|
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
|
323
|
# else
|
|
324
|
# define SWIFT_CLASS_PROPERTY(...)
|
|
325
|
# endif
|
|
326
|
#endif
|
|
327
|
|
|
328
|
#if __has_attribute(objc_runtime_name)
|
|
329
|
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
|
330
|
#else
|
|
331
|
# define SWIFT_RUNTIME_NAME(X)
|
|
332
|
#endif
|
|
333
|
#if __has_attribute(swift_name)
|
|
334
|
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
|
335
|
#else
|
|
336
|
# define SWIFT_COMPILE_NAME(X)
|
|
337
|
#endif
|
|
338
|
#if __has_attribute(objc_method_family)
|
|
339
|
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
|
340
|
#else
|
|
341
|
# define SWIFT_METHOD_FAMILY(X)
|
|
342
|
#endif
|
|
343
|
#if __has_attribute(noescape)
|
|
344
|
# define SWIFT_NOESCAPE __attribute__((noescape))
|
|
345
|
#else
|
|
346
|
# define SWIFT_NOESCAPE
|
|
347
|
#endif
|
|
348
|
#if __has_attribute(ns_consumed)
|
|
349
|
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
|
350
|
#else
|
|
351
|
# define SWIFT_RELEASES_ARGUMENT
|
|
352
|
#endif
|
|
353
|
#if __has_attribute(warn_unused_result)
|
|
354
|
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
355
|
#else
|
|
356
|
# define SWIFT_WARN_UNUSED_RESULT
|
|
357
|
#endif
|
|
358
|
#if __has_attribute(noreturn)
|
|
359
|
# define SWIFT_NORETURN __attribute__((noreturn))
|
|
360
|
#else
|
|
361
|
# define SWIFT_NORETURN
|
|
362
|
#endif
|
|
363
|
#if !defined(SWIFT_CLASS_EXTRA)
|
|
364
|
# define SWIFT_CLASS_EXTRA
|
|
365
|
#endif
|
|
366
|
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
|
367
|
# define SWIFT_PROTOCOL_EXTRA
|
|
368
|
#endif
|
|
369
|
#if !defined(SWIFT_ENUM_EXTRA)
|
|
370
|
# define SWIFT_ENUM_EXTRA
|
|
371
|
#endif
|
|
372
|
#if !defined(SWIFT_CLASS)
|
|
373
|
# if __has_attribute(objc_subclassing_restricted)
|
|
374
|
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
|
375
|
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
376
|
# else
|
|
377
|
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
378
|
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
|
379
|
# endif
|
|
380
|
#endif
|
|
381
|
#if !defined(SWIFT_RESILIENT_CLASS)
|
|
382
|
# if __has_attribute(objc_class_stub)
|
|
383
|
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
|
384
|
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
385
|
# else
|
|
386
|
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
|
387
|
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
|
388
|
# endif
|
|
389
|
#endif
|
|
390
|
|
|
391
|
#if !defined(SWIFT_PROTOCOL)
|
|
392
|
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
393
|
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
|
394
|
#endif
|
|
395
|
|
|
396
|
#if !defined(SWIFT_EXTENSION)
|
|
397
|
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
|
398
|
#endif
|
|
399
|
|
|
400
|
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
|
401
|
# if __has_attribute(objc_designated_initializer)
|
|
402
|
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
|
403
|
# else
|
|
404
|
# define OBJC_DESIGNATED_INITIALIZER
|
|
405
|
# endif
|
|
406
|
#endif
|
|
407
|
#if !defined(SWIFT_ENUM_ATTR)
|
|
408
|
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
|
|
409
|
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
|
410
|
# else
|
|
411
|
# define SWIFT_ENUM_ATTR(_extensibility)
|
|
412
|
# endif
|
|
413
|
#endif
|
|
414
|
#if !defined(SWIFT_ENUM)
|
|
415
|
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
416
|
# if __has_feature(generalized_swift_name)
|
|
417
|
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
|
418
|
# else
|
|
419
|
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
|
420
|
# endif
|
|
421
|
#endif
|
|
422
|
#if !defined(SWIFT_UNAVAILABLE)
|
|
423
|
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
|
424
|
#endif
|
|
425
|
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
|
426
|
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
|
427
|
#endif
|
|
428
|
#if !defined(SWIFT_AVAILABILITY)
|
|
429
|
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
|
430
|
#endif
|
|
431
|
#if !defined(SWIFT_WEAK_IMPORT)
|
|
432
|
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
|
433
|
#endif
|
|
434
|
#if !defined(SWIFT_DEPRECATED)
|
|
435
|
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
|
436
|
#endif
|
|
437
|
#if !defined(SWIFT_DEPRECATED_MSG)
|
|
438
|
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
|
439
|
#endif
|
|
440
|
#if __has_feature(attribute_diagnose_if_objc)
|
|
441
|
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
|
442
|
#else
|
|
443
|
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
|
444
|
#endif
|
|
445
|
#if !defined(IBSegueAction)
|
|
446
|
# define IBSegueAction
|
|
447
|
#endif
|
|
448
|
#if __has_feature(modules)
|
|
449
|
#if __has_warning("-Watimport-in-framework-header")
|
|
450
|
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
|
451
|
#endif
|
|
452
|
@import ObjectiveC;
|
|
453
|
@import UIKit;
|
|
454
|
#endif
|
|
455
|
|
|
456
|
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
|
457
|
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
|
458
|
#if __has_warning("-Wpragma-clang-attribute")
|
|
459
|
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
|
460
|
#endif
|
|
461
|
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
|
462
|
#pragma clang diagnostic ignored "-Wnullability"
|
|
463
|
|
|
464
|
#if __has_attribute(external_source_symbol)
|
|
465
|
# pragma push_macro("any")
|
|
466
|
# undef any
|
|
467
|
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="IPUMobileUI",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
|
468
|
# pragma pop_macro("any")
|
|
469
|
#endif
|
|
470
|
|
|
471
|
@class NSString;
|
|
472
|
|
|
473
|
SWIFT_CLASS("_TtC11IPUMobileUI18IPUSandBoxFileItem")
|
|
474
|
@interface IPUSandBoxFileItem : NSObject
|
|
475
|
@property (nonatomic, copy) NSString * _Nonnull name;
|
|
476
|
@property (nonatomic, copy) NSString * _Nonnull path;
|
|
477
|
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
478
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
479
|
@end
|
|
480
|
|
|
481
|
@class NSBundle;
|
|
482
|
@class NSCoder;
|
|
483
|
|
|
484
|
SWIFT_CLASS("_TtC11IPUMobileUI32IPUSandBoxFileListViewController")
|
|
485
|
@interface IPUSandBoxFileListViewController : UIViewController
|
|
486
|
- (void)viewDidLoad;
|
|
487
|
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
|
|
488
|
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
|
|
489
|
@end
|
|
490
|
|
|
491
|
@class UITableView;
|
|
492
|
@class NSNumber;
|
|
493
|
@class NSIndexPath;
|
|
494
|
@class UITableViewCell;
|
|
495
|
|
|
496
|
@interface IPUSandBoxFileListViewController (SWIFT_EXTENSION(IPUMobileUI)) <UITableViewDataSource, UITableViewDelegate>
|
|
497
|
- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section SWIFT_WARN_UNUSED_RESULT;
|
|
498
|
- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath SWIFT_WARN_UNUSED_RESULT;
|
|
499
|
- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath;
|
|
500
|
@end
|
|
501
|
|
|
502
|
|
|
503
|
SWIFT_CLASS("_TtC11IPUMobileUI17IPUSandboxBrowser")
|
|
504
|
@interface IPUSandboxBrowser : UINavigationController
|
|
505
|
@property (nonatomic, copy) void (^ _Nullable didSelectFile)(IPUSandBoxFileItem * _Nonnull);
|
|
506
|
- (nonnull instancetype)init;
|
|
507
|
- (nonnull instancetype)initWithInitialPath:(NSString * _Nonnull)initialPath closeAfterSelected:(BOOL)closeAfterSelected;
|
|
508
|
- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);
|
|
509
|
- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;
|
|
510
|
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
|
|
511
|
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
|
|
512
|
@end
|
|
513
|
|
|
514
|
#if __has_attribute(external_source_symbol)
|
|
515
|
# pragma clang attribute pop
|
|
516
|
#endif
|
|
517
|
#pragma clang diagnostic pop
|
|
518
|
#endif
|
|
519
|
|
|
520
|
#endif
|