mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 07:28:07 +01:00
19 lines
722 B
C++
19 lines
722 B
C++
#pragma once
|
|
|
|
#include "App.xaml.g.h"
|
|
|
|
namespace activation = winrt::Windows::ApplicationModel::Activation;
|
|
|
|
namespace winrt::bluewallet::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&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&);
|
|
private:
|
|
using super = AppT<App>;
|
|
};
|
|
} // namespace winrt::bluewallet::implementation
|