diff options
author | mistachkin <mistachkin@noemail.net> | 2016-02-24 21:42:03 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2016-02-24 21:42:03 +0000 |
commit | 7aa3ebee0fb7df401fa0ecd6a20f3a7f0da50f05 (patch) | |
tree | 2c2ec77837e9a60f6ae925e8ea8a554151366a0e /vsixtest/MainPage.xaml.cpp | |
parent | f769cd61b2af2d5bc2168b8f0aeeee3118694d2d (diff) | |
download | sqlite-7aa3ebee0fb7df401fa0ecd6a20f3a7f0da50f05.tar.gz sqlite-7aa3ebee0fb7df401fa0ecd6a20f3a7f0da50f05.zip |
Initial work on an automated VSIX testing tool. Not working or tested yet.
FossilOrigin-Name: 496e4ac984b2548dd5f2f969cd34656b586cfcfe
Diffstat (limited to 'vsixtest/MainPage.xaml.cpp')
-rw-r--r-- | vsixtest/MainPage.xaml.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vsixtest/MainPage.xaml.cpp b/vsixtest/MainPage.xaml.cpp new file mode 100644 index 000000000..f615f4d89 --- /dev/null +++ b/vsixtest/MainPage.xaml.cpp @@ -0,0 +1,27 @@ +//
+// MainPage.xaml.cpp
+// Implementation of the MainPage class.
+//
+
+#include "pch.h"
+#include "MainPage.xaml.h"
+
+using namespace vsixtest;
+
+using namespace Platform;
+using namespace Windows::Foundation;
+using namespace Windows::Foundation::Collections;
+using namespace Windows::UI::Xaml;
+using namespace Windows::UI::Xaml::Controls;
+using namespace Windows::UI::Xaml::Controls::Primitives;
+using namespace Windows::UI::Xaml::Data;
+using namespace Windows::UI::Xaml::Input;
+using namespace Windows::UI::Xaml::Media;
+using namespace Windows::UI::Xaml::Navigation;
+
+// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
+
+MainPage::MainPage()
+{
+ InitializeComponent();
+}
|