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.
16 lines
562 B
C++
16 lines
562 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
// Callback interface to be implemented by the clients of CCalcEngine if they require equation history
|
|
class IHistoryDisplay
|
|
{
|
|
public:
|
|
virtual ~IHistoryDisplay(){};
|
|
virtual unsigned int AddToHistory(
|
|
_In_ std::shared_ptr<CalculatorVector<std::pair<std::wstring, int>>> const& tokens,
|
|
_In_ std::shared_ptr<CalculatorVector<std::shared_ptr<IExpressionCommand>>> const& commands,
|
|
_In_ std::wstring_view result) = 0;
|
|
};
|