// 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>> const& tokens, _In_ std::shared_ptr>> const& commands, _In_ std::wstring_view result) = 0; };