Advertisement
eXulW0lf

lab2_Card.h

Nov 21st, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #ifndef CARD_H
  2. #define CARD_H
  3.  
  4. #include <string>
  5. #include <vector>
  6.  
  7. class Card {
  8. private:
  9.     long long number{};
  10.     std::string lastName;
  11.     int year{};
  12.     double balance{};
  13.  
  14. public:
  15.     Card(long long , std::string , int , double );
  16.     Card();
  17.     std::string getCard();
  18.     static void getMinBalance(std::vector<Card>* );
  19.     void edit();
  20. };
  21.  
  22. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement