Make CalculatorManager final rather than sealed (#331)

I have no idea if it is required to be `sealed`, I have seen no `^`
operator which makes me think it could be a regular C++ code, barring
the concurrency stuff.
This commit is contained in:
Michał Janiszewski 2019-03-21 01:23:09 +01:00 committed by Daniel Belcher
parent 597caf9c6b
commit 80a5fa01b0

View File

@ -42,7 +42,7 @@ namespace CalculationManager
MemorizedNumberClear = 335
};
class CalculatorManager sealed : public ICalcDisplay
class CalculatorManager final : public ICalcDisplay
{
private:
ICalcDisplay* const m_displayCallback;