AutoCatUwp/AutoCat/App.h
2020-08-16 10:34:10 -07:00

15 lines
461 B
C++

#pragma once
#include "App.xaml.g.h"
namespace winrt::AutoCat::implementation
{
struct App : AppT<App>
{
App();
void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs const&);
void OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&);
void OnNavigationFailed(IInspectable const&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&);
};
}