#ifndef C_C_COIN_H #define C_C_COIN_H #include "Cash.h" class Coin : public Cash{ private: public: Coin(int value, Currency currency); }; #endif