Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class wypozyczenie {
  2. private:
  3. string imie;
  4. string nazwisko;
  5. string numer_kat;
  6. string data_wyp;
  7. string data_zwr;
  8. public:
  9. wypozyczenie (string im, string naz, string num, string dat):imie(im),
  10. nazwisko(naz),numer_kat(num),data_wyp(dat),data_zwr("wypozyczone"){};
  11. ostream & operator <<(ostream &wyjscie) {};
  12. istream & operator <<(istream &wejscie){};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement