forked from microsoft/CsWinRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWarningStatic.h
More file actions
27 lines (25 loc) · 933 Bytes
/
WarningStatic.h
File metadata and controls
27 lines (25 loc) · 933 Bytes
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
#pragma once
#include "WarningStatic.g.h"
namespace winrt::TestComponentCSharp::implementation
{
struct WarningStatic
{
WarningStatic() = default;
static void Method();
static int32_t Property();
static void Property(int32_t value);
static winrt::event_token Event(Windows::Foundation::EventHandler<int32_t> const& handler);
static void Event(winrt::event_token const& token) noexcept;
static void WarningMethod();
static int32_t WarningProperty();
static void WarningProperty(int32_t value);
static winrt::event_token WarningEvent(Windows::Foundation::EventHandler<int32_t> const& handler);
static void WarningEvent(winrt::event_token const& token) noexcept;
};
}
namespace winrt::TestComponentCSharp::factory_implementation
{
struct WarningStatic : WarningStaticT<WarningStatic, implementation::WarningStatic>
{
};
}