summaryrefslogtreecommitdiff
path: root/cpp/test/uwp/App.xaml.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/uwp/App.xaml.h')
-rw-r--r--cpp/test/uwp/App.xaml.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cpp/test/uwp/App.xaml.h b/cpp/test/uwp/App.xaml.h
new file mode 100644
index 00000000000..3526e1c11b8
--- /dev/null
+++ b/cpp/test/uwp/App.xaml.h
@@ -0,0 +1,28 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2015 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 "App.g.h"
+
+namespace TestSuite
+{
+/// <summary>
+/// Provides application-specific behavior to supplement the default Application class.
+/// </summary>
+ref class App sealed
+{
+public:
+ App();
+ virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
+
+private:
+ void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);
+};
+}