removed unessesary rubbish
authorAlma Dejus <almde515@student.liu.se>
Sat, 28 Oct 2023 14:25:30 +0000 (16:25 +0200)
committerAlma Dejus <almde515@student.liu.se>
Sat, 28 Oct 2023 14:25:30 +0000 (16:25 +0200)
src/operands.cc
src/operands.h

index 6b8487fe4c15d17982986f4cd294231af67e7719..7bf1d7016249e8e08ee442ef10f593cbaa23cf17 100644 (file)
@@ -32,20 +32,6 @@ std::string Const_double::get_postfix() const
     return s.str();
 }
 
-// Variable
-Variable::Variable(std::string & n, double v) : name{n}, value{v}
-{}
-
-double Variable::get_value() const
-{
-    return value;
-}
-
-std::string Variable::get_postfix() const
-{
-    return name;
-}
-
 std::string Operand::get_infix() const
 {
     return get_postfix();
index 135a47f37081bd7b32b33f6f81ac4ddcb8c0e23f..5214e3de401e896e2bbe8969d0ddb65a87e67eb3 100644 (file)
@@ -45,18 +45,4 @@ private:
     double value;
 };
 
-class Variable : public Operand
-{
-public:
-    Variable(std::string & n, double v);
-
-    double get_value() const override;
-    std::string get_postfix() const override;
-
-protected:
-private:
-    std::string name;
-    double value;
-};
-
 #endif
\ No newline at end of file