mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-24 06:55:19 -07:00
Merge branch 'DateDiffNegative' of https://github.com/rudyhuyn/calculator into DateDiffNegative
This commit is contained in:
commit
4765960d2c
1 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
#include "Header Files/CalcEngine.h"
|
#include "Header Files/CalcEngine.h"
|
||||||
#include "Header Files/Rational.h"
|
#include "Header Files/Rational.h"
|
||||||
|
|
||||||
class CParentheses : public IParenthesisCommand
|
class CParentheses final : public IParenthesisCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CParentheses(_In_ int command);
|
CParentheses(_In_ int command);
|
||||||
|
@ -18,7 +18,7 @@ private:
|
||||||
int m_command;
|
int m_command;
|
||||||
};
|
};
|
||||||
|
|
||||||
class CUnaryCommand : public IUnaryCommand
|
class CUnaryCommand final : public IUnaryCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CUnaryCommand(int command);
|
CUnaryCommand(int command);
|
||||||
|
@ -33,7 +33,7 @@ private:
|
||||||
std::shared_ptr<CalculatorVector<int>> m_command;
|
std::shared_ptr<CalculatorVector<int>> m_command;
|
||||||
};
|
};
|
||||||
|
|
||||||
class CBinaryCommand : public IBinaryCommand
|
class CBinaryCommand final : public IBinaryCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CBinaryCommand(int command);
|
CBinaryCommand(int command);
|
||||||
|
@ -46,7 +46,7 @@ private:
|
||||||
int m_command;
|
int m_command;
|
||||||
};
|
};
|
||||||
|
|
||||||
class COpndCommand : public IOpndCommand
|
class COpndCommand final : public IOpndCommand
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
COpndCommand(
|
COpndCommand(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue