Skip to content

Commit 5a53ee6

Browse files
Added the base framework.
1 parent 0257e15 commit 5a53ee6

13 files changed

Lines changed: 148 additions & 0 deletions
53.7 KB
Binary file not shown.
387 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29)
2+
#pragma clang diagnostic push
3+
4+
#if defined(__has_include) && __has_include(<swift/objc-prologue.h>)
5+
# include <swift/objc-prologue.h>
6+
#endif
7+
8+
#pragma clang diagnostic ignored "-Wauto-import"
9+
#include <objc/NSObject.h>
10+
#include <stdint.h>
11+
#include <stddef.h>
12+
#include <stdbool.h>
13+
14+
#if !defined(SWIFT_TYPEDEFS)
15+
# define SWIFT_TYPEDEFS 1
16+
# if defined(__has_include) && __has_include(<uchar.h>)
17+
# include <uchar.h>
18+
# elif !defined(__cplusplus) || __cplusplus < 201103L
19+
typedef uint_least16_t char16_t;
20+
typedef uint_least32_t char32_t;
21+
# endif
22+
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
23+
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
24+
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
25+
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
26+
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
27+
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
28+
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
29+
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
30+
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
31+
#endif
32+
33+
#if !defined(SWIFT_PASTE)
34+
# define SWIFT_PASTE_HELPER(x, y) x##y
35+
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
36+
#endif
37+
#if !defined(SWIFT_METATYPE)
38+
# define SWIFT_METATYPE(X) Class
39+
#endif
40+
41+
#if defined(__has_attribute) && __has_attribute(objc_runtime_name)
42+
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
43+
#else
44+
# define SWIFT_RUNTIME_NAME(X)
45+
#endif
46+
#if defined(__has_attribute) && __has_attribute(swift_name)
47+
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
48+
#else
49+
# define SWIFT_COMPILE_NAME(X)
50+
#endif
51+
#if !defined(SWIFT_CLASS_EXTRA)
52+
# define SWIFT_CLASS_EXTRA
53+
#endif
54+
#if !defined(SWIFT_PROTOCOL_EXTRA)
55+
# define SWIFT_PROTOCOL_EXTRA
56+
#endif
57+
#if !defined(SWIFT_ENUM_EXTRA)
58+
# define SWIFT_ENUM_EXTRA
59+
#endif
60+
#if !defined(SWIFT_CLASS)
61+
# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
62+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
63+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
64+
# else
65+
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
66+
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
67+
# endif
68+
#endif
69+
70+
#if !defined(SWIFT_PROTOCOL)
71+
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
72+
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
73+
#endif
74+
75+
#if !defined(SWIFT_EXTENSION)
76+
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
77+
#endif
78+
79+
#if !defined(OBJC_DESIGNATED_INITIALIZER)
80+
# if defined(__has_attribute) && __has_attribute(objc_designated_initializer)
81+
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
82+
# else
83+
# define OBJC_DESIGNATED_INITIALIZER
84+
# endif
85+
#endif
86+
#if !defined(SWIFT_ENUM)
87+
# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
88+
# if defined(__has_feature) && __has_feature(generalized_swift_name)
89+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
90+
# else
91+
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
92+
# endif
93+
#endif
94+
#if defined(__has_feature) && __has_feature(modules)
95+
@import UIKit;
96+
#endif
97+
98+
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
99+
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
100+
@class UIStoryboardSegue;
101+
@class NSBundle;
102+
@class NSCoder;
103+
104+
SWIFT_CLASS("_TtC16ComputeFramework19InputViewController")
105+
@interface InputViewController : UIViewController
106+
- (void)prepareForSegue:(UIStoryboardSegue * _Nonnull)segue sender:(id _Nullable)sender;
107+
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
108+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
109+
@end
110+
111+
112+
SWIFT_CLASS("_TtC16ComputeFramework20ResultViewController")
113+
@interface ResultViewController : UIViewController
114+
- (void)viewDidLoad;
115+
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
116+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
117+
@end
118+
119+
#pragma clang diagnostic pop
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// ComputeFramework.h
3+
// ComputeFramework
4+
//
5+
// Created by Pradeep Rajkumar on 20/03/18.
6+
// Copyright © 2018 Pradeep Rajkumar. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for ComputeFramework.
12+
FOUNDATION_EXPORT double ComputeFrameworkVersionNumber;
13+
14+
//! Project version string for ComputeFramework.
15+
FOUNDATION_EXPORT const unsigned char ComputeFrameworkVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <ComputeFramework/PublicHeader.h>
18+
19+
789 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)