-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathToastNotification.cpp
More file actions
79 lines (78 loc) · 2.41 KB
/
ToastNotification.cpp
File metadata and controls
79 lines (78 loc) · 2.41 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
#include "pch.h"
#include "ToastNotification.h"
#include "Microsoft.Windows.ToastNotifications.ToastNotification.g.cpp"
namespace winrt::Microsoft::Windows::ToastNotifications::implementation
{
ToastNotification::ToastNotification(winrt::Windows::Data::Xml::Dom::XmlDocument const& /* payload */)
{
throw hresult_not_implemented();
}
hstring ToastNotification::Tag()
{
throw hresult_not_implemented();
}
void ToastNotification::Tag(hstring const& /* value */)
{
throw hresult_not_implemented();
}
hstring ToastNotification::Group()
{
throw hresult_not_implemented();
}
void ToastNotification::Group(hstring const& /* value */)
{
throw hresult_not_implemented();
}
uint32_t ToastNotification::ToastId()
{
throw hresult_not_implemented();
}
void ToastNotification::ToastId(uint32_t /* value */)
{
throw hresult_not_implemented();
}
winrt::Windows::Data::Xml::Dom::XmlDocument ToastNotification::Payload()
{
throw hresult_not_implemented();
}
winrt::Microsoft::Windows::ToastNotifications::ToastProgressData ToastNotification::ProgressData()
{
throw hresult_not_implemented();
}
void ToastNotification::ProgressData(winrt::Microsoft::Windows::ToastNotifications::ToastProgressData const& /* value */)
{
throw hresult_not_implemented();
}
winrt::Windows::Foundation::DateTime ToastNotification::ExpirationTime()
{
throw hresult_not_implemented();
}
void ToastNotification::ExpirationTime(winrt::Windows::Foundation::DateTime const& /* value */)
{
throw hresult_not_implemented();
}
bool ToastNotification::ExpiresOnReboot()
{
throw hresult_not_implemented();
}
void ToastNotification::ExpiresOnReboot(bool /* value */)
{
throw hresult_not_implemented();
}
winrt::Microsoft::Windows::ToastNotifications::ToastPriority ToastNotification::Priority()
{
throw hresult_not_implemented();
}
void ToastNotification::Priority(winrt::Microsoft::Windows::ToastNotifications::ToastPriority const& /* value */)
{
throw hresult_not_implemented();
}
bool ToastNotification::SuppressDisplay()
{
throw hresult_not_implemented();
}
void ToastNotification::SuppressDisplay(bool /* value */)
{
throw hresult_not_implemented();
}
}