diff options
Diffstat (limited to 'cpp/test/WinRT/TestSuite/MainPage.xaml.h')
-rw-r--r-- | cpp/test/WinRT/TestSuite/MainPage.xaml.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/cpp/test/WinRT/TestSuite/MainPage.xaml.h b/cpp/test/WinRT/TestSuite/MainPage.xaml.h new file mode 100644 index 00000000000..f9fbaf596a5 --- /dev/null +++ b/cpp/test/WinRT/TestSuite/MainPage.xaml.h @@ -0,0 +1,40 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2012 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#pragma once + +#include "MainPage.g.h" +#include <collection.h> + +namespace TestSuite +{ +/// <summary> +/// An empty page that can be used on its own or navigated to within a Frame. +/// </summary> +public ref class MainPage sealed +{ +public: + + MainPage(); + + void completed(); + void failed(Platform::String^); + +protected: + + virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override; + +private: + + void btnRun_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e); + void runSelectedTest(); + Platform::Collections::Vector<Platform::String^>^ _names; +}; + +} |