summaryrefslogtreecommitdiff
path: root/cpp/test/uwp/controller/ControllerView.xaml.h
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-06-01 17:41:03 +0200
committerJose <jose@zeroc.com>2018-06-01 17:41:03 +0200
commitcbe92e540a7f02f0bdf93192424bd119189365b7 (patch)
tree411c50dc0ae9c669d31a940b1b4903b5deac4f12 /cpp/test/uwp/controller/ControllerView.xaml.h
parentFixed Util.py check for binary installation directory on Windows (diff)
downloadice-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.h45
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^);
+};
+
+}