kodi
App.xaml.h
1 //
2 // App.xaml.h
3 // Declaration of the App class.
4 //
5 
6 #pragma once
7 
8 #include "App.g.h"
9 
10 namespace TestShell
11 {
15  ref class App sealed
16  {
17  public:
18  App();
19  virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
20 
21  private:
22  void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);
23  };
24 }
Definition: App.xaml.h:10