2wqew

Untitled

Apr 23rd, 2018
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #ifndef PRACOWNIK_H
  2. #define PRACOWNIK_H
  3. #include "osoba.h"
  4.  
  5. class Pracownik : public Osoba
  6. {
  7. int liczba_godzin;
  8.  
  9. public:
  10. Pracownik(const std::string & im, const std::string & na, const std::string & pe, int liczba_godzin);
  11. Pracownik(const Osoba & o, int liczba_godzin);
  12. int get_liczba_godzin() const;
  13. };
  14.  
  15. #endif
Add Comment
Please, Sign In to add comment