1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:17:34 +00:00

Calculator: Use new GML compiler

This commit is contained in:
kleines Filmröllchen 2023-05-26 14:17:24 +02:00 committed by Sam Atkins
parent 182126dfda
commit 15a539a5b0
7 changed files with 84 additions and 63 deletions

View file

@ -10,13 +10,14 @@
#include <AK/Optional.h>
#include <LibCrypto/BigFraction/BigFraction.h>
namespace Calculator {
// This type implements the regular calculator
// behavior, such as performing arithmetic
// operations and providing a memory cell.
// It does not deal with number input; you
// have to pass in already parsed double
// values.
class Calculator final {
public:
Calculator() = default;
@ -64,3 +65,5 @@ private:
Crypto::BigFraction finish_binary_operation(Crypto::BigFraction const& left_side, Operation operation, Crypto::BigFraction const& right_side);
};
}