Advertisement
SilverhandX

coin.h

Mar 7th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <string>
  2. using namespace std;
  3. #ifndef COIN_H
  4. #define COIN_H
  5.  
  6. class Coin
  7. {
  8. private:
  9.     string sideUp;
  10. public:
  11.     Coin();
  12.    
  13.     void toss();
  14.     string getSideUp()
  15.     { return sideUp; }
  16. };
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement