Committing TBB 2019 Update 9 source code
[platform/upstream/tbb.git] / examples / parallel_for / tachyon / msvs / uwp / App.xaml.h
1 /*
2     Copyright (c) 2005-2019 Intel Corporation
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8         http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15 */
16
17
18 #pragma once
19
20 #include "App.g.h"
21 #include "DirectXPage.xaml.h"
22
23 namespace tbbTachyon
24 {
25     /// <summary>
26     /// Provides application-specific behavior to supplement the default Application class.
27     /// </summary>
28     ref class App sealed
29     {
30     public:
31         App();
32         virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
33
34     private:
35         DirectXPage^ m_directXPage;
36     };
37 }