Constants.cpp 818 B

12345678910111213141516171819202122
  1. //*********************************************************
  2. //
  3. // Copyright (c) Microsoft. All rights reserved.
  4. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
  5. // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
  6. // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
  7. // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
  8. //
  9. //*********************************************************
  10. #include "pch.h"
  11. #include "MainPage.xaml.h"
  12. #include "Constants.h"
  13. using namespace SDKSample;
  14. Platform::Array<Scenario>^ MainPage::scenariosInner = ref new Platform::Array<Scenario>
  15. {
  16. // The format here is the following:
  17. // { "Description for the sample", "Fully qualified name for the class that implements the scenario" }
  18. { "Enumerate cameras and add a video effect", "SDKSample.MediaCapture.AdvancedCapture" },
  19. };