-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR.generated.swift
120 lines (92 loc) · 3.37 KB
/
R.generated.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
//
import Foundation
import Rswift
import UIKit
/// This `R` struct is generated and contains references to static resources.
struct R: Rswift.Validatable {
fileprivate static let applicationLocale = hostingBundle.preferredLocalizations.first.flatMap(Locale.init) ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
static func validate() throws {
try intern.validate()
}
/// This `R.color` struct is generated, and contains static references to 0 color palettes.
struct color {
fileprivate init() {}
}
/// This `R.file` struct is generated, and contains static references to 0 files.
struct file {
fileprivate init() {}
}
/// This `R.font` struct is generated, and contains static references to 0 fonts.
struct font {
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 0 images.
struct image {
fileprivate init() {}
}
/// This `R.nib` struct is generated, and contains static references to 0 nibs.
struct nib {
fileprivate init() {}
}
/// This `R.reuseIdentifier` struct is generated, and contains static references to 0 reuse identifiers.
struct reuseIdentifier {
fileprivate init() {}
}
/// This `R.segue` struct is generated, and contains static references to 0 view controllers.
struct segue {
fileprivate init() {}
}
/// This `R.storyboard` struct is generated, and contains static references to 2 storyboards.
struct storyboard {
/// Storyboard `Launch_Screen_Storyboard`.
static let launch_Screen_Storyboard = _R.storyboard.launch_Screen_Storyboard()
/// Storyboard `Main_Storyboard`.
static let main_Storyboard = _R.storyboard.main_Storyboard()
/// `UIStoryboard(name: "Launch_Screen_Storyboard", bundle: ...)`
static func launch_Screen_Storyboard(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.launch_Screen_Storyboard)
}
/// `UIStoryboard(name: "Main_Storyboard", bundle: ...)`
static func main_Storyboard(_: Void = ()) -> UIKit.UIStoryboard {
return UIKit.UIStoryboard(resource: R.storyboard.main_Storyboard)
}
fileprivate init() {}
}
/// This `R.string` struct is generated, and contains static references to 0 localization tables.
struct string {
fileprivate init() {}
}
fileprivate struct intern: Rswift.Validatable {
fileprivate static func validate() throws {
// There are no resources to validate
}
fileprivate init() {}
}
fileprivate class Class {}
fileprivate init() {}
}
struct _R {
struct nib {
fileprivate init() {}
}
struct storyboard {
struct launch_Screen_Storyboard: Rswift.StoryboardResourceWithInitialControllerType {
typealias InitialController = UIKit.UIViewController
let bundle = R.hostingBundle
let name = "Launch_Screen_Storyboard"
fileprivate init() {}
}
struct main_Storyboard: Rswift.StoryboardResourceWithInitialControllerType {
typealias InitialController = UIKit.UIViewController
let bundle = R.hostingBundle
let name = "Main_Storyboard"
fileprivate init() {}
}
fileprivate init() {}
}
fileprivate init() {}
}