-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathStaticOnlyTest.cpp
More file actions
275 lines (218 loc) · 5.76 KB
/
Copy pathStaticOnlyTest.cpp
File metadata and controls
275 lines (218 loc) · 5.76 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "pch.h"
#include "StaticOnlyTest.h"
#include "StaticOnlyTest.g.cpp"
#include <numeric>
namespace winrt::TestComponent::implementation
{
bool StaticOnlyTest::BoolProperty()
{
return m_boolProperty;
}
void StaticOnlyTest::BoolProperty(bool value)
{
m_boolProperty = value;
}
char16_t StaticOnlyTest::CharProperty()
{
return m_charProperty;
}
void StaticOnlyTest::CharProperty(char16_t value)
{
m_charProperty = value;
}
uint8_t StaticOnlyTest::U8Property()
{
return m_u8Property;
}
void StaticOnlyTest::U8Property(uint8_t value)
{
m_u8Property = value;
}
uint16_t StaticOnlyTest::U16Property()
{
return m_u16Property;
}
void StaticOnlyTest::U16Property(uint16_t value)
{
m_u16Property = value;
}
uint32_t StaticOnlyTest::U32Property()
{
return m_u32Property;
}
void StaticOnlyTest::U32Property(uint32_t value)
{
m_u32Property = value;
}
uint64_t StaticOnlyTest::U64Property()
{
return m_u64Property;
}
void StaticOnlyTest::U64Property(uint64_t value)
{
m_u64Property = value;
}
int16_t StaticOnlyTest::S16Property()
{
return m_s16Property;
}
void StaticOnlyTest::S16Property(int16_t value)
{
m_s16Property = value;
}
int32_t StaticOnlyTest::S32Property()
{
return m_s32Property;
}
void StaticOnlyTest::S32Property(int32_t value)
{
m_s32Property = value;
}
int64_t StaticOnlyTest::S64Property()
{
return m_s64Property;
}
void StaticOnlyTest::S64Property(int64_t value)
{
m_s64Property = value;
}
float StaticOnlyTest::F32Property()
{
return m_f32Property;
}
void StaticOnlyTest::F32Property(float value)
{
m_f32Property = value;
}
double StaticOnlyTest::F64Property()
{
return m_f64Property;
}
void StaticOnlyTest::F64Property(double value)
{
m_f64Property = value;
}
hstring StaticOnlyTest::StringProperty()
{
return m_stringProperty;
}
void StaticOnlyTest::StringProperty(hstring const& value)
{
m_stringProperty = value;
}
winrt::guid StaticOnlyTest::GuidProperty()
{
return m_guidProperty;
}
void StaticOnlyTest::GuidProperty(winrt::guid const& value)
{
m_guidProperty = value;
}
TestEnum StaticOnlyTest::EnumProperty()
{
return m_enumProperty;
}
void StaticOnlyTest::EnumProperty(TestEnum const& value)
{
m_enumProperty = value;
}
NumericTypes StaticOnlyTest::NumericsStructProperty()
{
return m_numericsStructProperty;
}
void StaticOnlyTest::NumericsStructProperty(NumericTypes const& value)
{
m_numericsStructProperty = value;
}
StringTypes StaticOnlyTest::StringsStructProperty()
{
return m_stringsStructProperty;
}
void StaticOnlyTest::StringsStructProperty(StringTypes const& value)
{
m_stringsStructProperty = value;
}
BooleanTypes StaticOnlyTest::BooleansStructProperty()
{
return m_booleansStructProperty;
}
void StaticOnlyTest::BooleansStructProperty(BooleanTypes const& value)
{
m_booleansStructProperty = value;
}
CompositeType StaticOnlyTest::CompositeStructProperty()
{
return m_compositeStructProperty;
}
void StaticOnlyTest::CompositeStructProperty(CompositeType const& value)
{
m_compositeStructProperty = value;
}
Windows::Foundation::IReference<bool> StaticOnlyTest::RefBooleanProperty()
{
return m_refBoolProperty;
}
void StaticOnlyTest::RefBooleanProperty(Windows::Foundation::IReference<bool> const& value)
{
m_refBoolProperty = value;
}
Windows::Foundation::IReference<char16_t> StaticOnlyTest::RefCharProperty()
{
return m_refCharProperty;
}
void StaticOnlyTest::RefCharProperty(Windows::Foundation::IReference<char16_t> const& value)
{
m_refCharProperty = value;
}
Windows::Foundation::IReference<int32_t> StaticOnlyTest::RefNumericProperty()
{
return m_refNumericProperty;
}
void StaticOnlyTest::RefNumericProperty(Windows::Foundation::IReference<int32_t> const& value)
{
m_refNumericProperty = value;
}
Windows::Foundation::IReference<TestEnum> StaticOnlyTest::RefEnumProperty()
{
return m_refEnumProperty;
}
void StaticOnlyTest::RefEnumProperty(Windows::Foundation::IReference<TestEnum> const& value)
{
m_refEnumProperty = value;
}
TestComponent::TestObject StaticOnlyTest::ObjectProperty()
{
return m_objectProperty;
}
void StaticOnlyTest::ObjectProperty(TestComponent::TestObject const& value)
{
m_objectProperty = value;
}
hresult StaticOnlyTest::HResultProperty()
{
return m_hresultProperty;
}
void StaticOnlyTest::HResultProperty(hresult value)
{
m_hresultProperty = value;
}
winrt::hstring StaticOnlyTest::CopyString(winrt::hstring value)
{
return value;
}
winrt::event_token StaticOnlyTest::ObjectEventHandler(
Windows::Foundation::EventHandler<TestComponent::TestObject> const& handler)
{
return s_objectEventSource.add(handler);
}
void StaticOnlyTest::ObjectEventHandler(winrt::event_token const& token) noexcept
{
s_objectEventSource.remove(token);
}
void StaticOnlyTest::RaiseObjectEvent(TestComponent::TestObject const& value)
{
s_objectEventSource(nullptr, value);
}
}