//
// Created by JThei on 01.12.2018.
//

#include "Money.h"

Money::Money(int value, Currency currency) : value(value), currency(currency) {

}

Money Money::operator+(Money &a) {
    return Money();
}

Money Money::operator-(Money &a) {
    return Money();
}

const Money Money::operator++(int) {
    return Money();
}

const Money Money::operator--(int) {
    return Money();
}

bool Money::operator==(Money &a) {
    return false;
}

bool Money::operator!=(Money &a) {
    return false;
}

Currency Money::getCurrency() {
    return currency;
}