16 lines
339 B
C
16 lines
339 B
C
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// Licensed under the MIT License.
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
namespace CalculatorApp
|
|||
|
{
|
|||
|
namespace ViewState
|
|||
|
{
|
|||
|
extern Platform::StringReference Snap;
|
|||
|
extern Platform::StringReference DockedView;
|
|||
|
|
|||
|
bool IsValidViewState(Platform::String^ viewState);
|
|||
|
}
|
|||
|
}
|