diff options
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^); +}; + +} |