SqrtY, Factorial, CubeRoot, Square, Cube, PowY, Log, Ln, Exp, Inv, Pi, Sinh, Sin, Cosh, Cos, Tanh, Tan
13 lines
No EOL
376 B
C#
13 lines
No EOL
376 B
C#
using calculator.Common;
|
|
|
|
namespace calculator.View;
|
|
|
|
public interface ICaculatorView
|
|
{
|
|
public event Action<char> OperandPressed;
|
|
public event Action<Operation> OperatorPressed;
|
|
public event Action<bool> ClearPressed;
|
|
public event Action CalculatePressed;
|
|
public event Action<Operation> SingleOperatorPressed;
|
|
public void UpdateView(string input);
|
|
} |