Advertisement
2wqew

Untitled

Apr 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #ifndef firma_h
  2. #define firma_h
  3. #include "pracownik.h"
  4. #include <string>
  5. #include <vector>
  6.  
  7. class Firma
  8. {
  9. std::string nazwa;
  10. double stawka_godzinowa;
  11. std::vector<Pracownik> pracownicy;
  12. public:
  13. Firma(const std::string & nazwa, double stawka);
  14. void zatrudnij (const Pracownik & p);
  15. //void zwolnij (const Pracownik & p);
  16. //double get_koszty_pracy() const;
  17. //void wyswietl_liste_plac() const;
  18. };
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement