forked from birdofpreyru/react-native-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.h
21 lines (17 loc) · 741 Bytes
/
App.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include "App.xaml.g.h"
#include <CppWinRTIncludes.h>
namespace activation = winrt::Windows::ApplicationModel::Activation;
namespace winrt::ReactNativeFsExample::implementation
{
struct App : AppT<App>
{
App() noexcept;
void OnLaunched(activation::LaunchActivatedEventArgs const&);
void OnActivated(Windows::ApplicationModel::Activation::IActivatedEventArgs const &e);
void OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&);
void OnNavigationFailed(IInspectable const&, xaml::Navigation::NavigationFailedEventArgs const&);
private:
using super = AppT<App>;
};
} // namespace winrt::ReactNativeFsExample::implementation