// ********************************************************************** // // 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 namespace TestSuite { /// /// An empty page that can be used on its own or navigated to within a Frame. /// [Windows::Foundation::Metadata::WebHostHidden] public ref class MainPage sealed { public: MainPage(); void completed(); void failed(Platform::String^ reason); 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^ _names; }; }