1 // 2 // MainPage.xaml.h 3 // Declaration of the MainPage class. 4 // 5 6 #pragma once 7 8 #include "MainPage.g.h" 9 10 namespace vsixtest 11 { 12 /// <summary> 13 /// An empty page that can be used on its own or navigated to within a Frame. 14 /// </summary> 15 public ref class MainPage sealed 16 { 17 public: 18 MainPage(); 19 void UseSQLite(void); 20 21 }; 22 } 23