spectrum2/3rdparty/cpprestsdk/samples/OAuth2Live/App.xaml.h
2015-11-19 15:19:14 +01:00

24 lines
523 B
C++

//
// App.xaml.h
// Declaration of the App class.
//
#pragma once
#include "App.g.h"
namespace OAuth2Live
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
ref class App sealed
{
public:
App();
virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ args) override;
private:
void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);
};
}