mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
999 B
36 lines
999 B
12 years ago
|
//*********************************************************
|
||
|
//
|
||
|
// Copyright (c) Microsoft. All rights reserved.
|
||
|
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
|
||
|
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
|
||
|
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
|
||
|
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
|
||
|
//
|
||
|
//*********************************************************
|
||
|
|
||
|
//
|
||
|
// App.xaml.h
|
||
|
// Declaration of the App.xaml class.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "pch.h"
|
||
|
#include "App.g.h"
|
||
|
#include "MainPage.g.h"
|
||
|
|
||
|
namespace SDKSample
|
||
|
{
|
||
|
ref class App
|
||
|
{
|
||
|
internal:
|
||
|
App();
|
||
|
virtual void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ pArgs);
|
||
|
Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ LaunchArgs;
|
||
|
protected:
|
||
|
virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
|
||
|
private:
|
||
|
Windows::UI::Xaml::Controls::Frame^ rootFrame;
|
||
|
};
|
||
|
}
|