15 lines
461 B
C++
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&);
|
|
};
|
|
}
|