#ifndef C_C_COIN_H #define C_C_COIN_H #include "Cash.h" /** * @namespace banking * \ingroup banking */ namespace banking { /** * @author Johannes Theiner * @version 1.0 */ class Coin : public Cash{ private: public: explicit Coin(int value, Currency currency); explicit Coin(Coin *coin); int getValue() override; }; } #endif