diff options
author | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
commit | cbe92e540a7f02f0bdf93192424bd119189365b7 (patch) | |
tree | 411c50dc0ae9c669d31a940b1b4903b5deac4f12 /cpp/test/uwp/controller/ControllerView.xaml.h | |
parent | Fixed Util.py check for binary installation directory on Windows (diff) | |
download | ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.bz2 ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.xz ice-cbe92e540a7f02f0bdf93192424bd119189365b7.zip |
Do not use Ice::Application for Ice testsuite
Diffstat (limited to 'cpp/test/uwp/controller/ControllerView.xaml.h')
-rw-r--r-- | cpp/test/uwp/controller/ControllerView.xaml.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/cpp/test/uwp/controller/ControllerView.xaml.h b/cpp/test/uwp/controller/ControllerView.xaml.h new file mode 100644 index 00000000000..ec796159bee --- /dev/null +++ b/cpp/test/uwp/controller/ControllerView.xaml.h @@ -0,0 +1,45 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2018 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 <ControllerView.g.h> +#include <collection.h> +#include <map> +#include <string> +#include <memory> +#include <mutex> + +namespace +{ +class ControllerI; +class ProcessControllerI; +} + +namespace Test +{ + +[Windows::Foundation::Metadata::WebHostHidden] +public ref class ControllerView sealed +{ +public: + + ControllerView(); + virtual ~ControllerView(); + +private: + + friend class ControllerI; + friend class ProcessControllerI; + void println(const std::string&); + std::string getHost() const; + void Hostname_SelectionChanged(Platform::Object^, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^); +}; + +} |