Path: blob/master/samples/winrt/ImageManipulations/Constants.h
16337 views
//*********************************************************1//2// Copyright (c) Microsoft. All rights reserved.3// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF4// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY5// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR6// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.7//8//*********************************************************910#pragma once1112#include <collection.h>13namespace SDKSample14{15public value struct Scenario16{17Platform::String^ Title;18Platform::String^ ClassName;19};2021partial ref class MainPage22{23public:24static property Platform::String^ FEATURE_NAME25{26Platform::String^ get()27{28return ref new Platform::String(L"OpenCV Image Manipulations sample");29}30}3132static property Platform::Array<Scenario>^ scenarios33{34Platform::Array<Scenario>^ get()35{36return scenariosInner;37}38}39private:40static Platform::Array<Scenario>^ scenariosInner;41};424344}454647