Description of the changes: Adjusted some of the values in .clang-format Add clang-format-all.ps1 Fix path to .clang-format in Calculator.sln How changes were validated: Manual.
38 lines
1.5 KiB
C++
38 lines
1.5 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace CalculatorApp
|
|
{
|
|
namespace Converters
|
|
{
|
|
[Windows::Foundation::Metadata::WebHostHidden] public ref class ItemSizeToVisibilityConverter sealed : Windows::UI::Xaml::Data::IValueConverter
|
|
{
|
|
public:
|
|
virtual Platform::Object
|
|
^ Convert(Platform::Object ^ value, Windows::UI::Xaml::Interop::TypeName targetType, Platform::Object ^ parameter, Platform::String ^ language);
|
|
virtual Platform::Object
|
|
^ ConvertBack(
|
|
Platform::Object ^ value,
|
|
Windows::UI::Xaml::Interop::TypeName targetType,
|
|
Platform::Object ^ parameter,
|
|
Platform::String ^ language);
|
|
};
|
|
|
|
public
|
|
ref class ItemSizeToVisibilityNegationConverter sealed : Windows::UI::Xaml::Data::IValueConverter
|
|
{
|
|
public:
|
|
virtual Platform::Object
|
|
^ Convert(Platform::Object ^ value, Windows::UI::Xaml::Interop::TypeName targetType, Platform::Object ^ parameter, Platform::String ^ language);
|
|
virtual Platform::Object
|
|
^ ConvertBack(
|
|
Platform::Object ^ value,
|
|
Windows::UI::Xaml::Interop::TypeName targetType,
|
|
Platform::Object ^ parameter,
|
|
Platform::String ^ language);
|
|
};
|
|
}
|
|
}
|