-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathWarningStatic.cpp
More file actions
48 lines (47 loc) · 1.07 KB
/
WarningStatic.cpp
File metadata and controls
48 lines (47 loc) · 1.07 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
#include "pch.h"
#include "WarningStatic.h"
#include "WarningStatic.g.cpp"
namespace winrt::TestComponentCSharp::implementation
{
void WarningStatic::Method()
{
}
int32_t WarningStatic::Property()
{
return 0;
}
void WarningStatic::Property(int32_t value)
{
}
winrt::event_token WarningStatic::Event(Windows::Foundation::EventHandler<int32_t> const& handler)
{
return {};
}
void WarningStatic::Event(winrt::event_token const& token) noexcept
{
}
void WarningStatic::WarningMethod()
{
}
int32_t WarningStatic::WarningProperty()
{
return 0;
}
void WarningStatic::WarningProperty(int32_t value)
{
}
winrt::event_token WarningStatic::WarningEvent(Windows::Foundation::EventHandler<int32_t> const& handler)
{
return {};
}
void WarningStatic::WarningEvent(winrt::event_token const& token) noexcept
{
}
int32_t WarningStatic::ReadWriteProperty()
{
return 0;
}
void WarningStatic::ReadWriteProperty(int32_t value)
{
}
}