2wqew

Untitled

Apr 23rd, 2018
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #ifndef osoba_h
  2. #define osoba_h
  3. #include <string>
  4.  
  5. class Osoba {
  6. std::string imie;
  7. std::string nazwisko;
  8. std::string pesel;
  9. public:
  10. Osoba(const std::string & im, const std::string & na, const std::string & pe);
  11. std::string get_imie() const;
  12. std::string get_nazwisko() const;
  13. std::string get_pesel() const;
  14. };
  15.  
  16. #endif
Add Comment
Please, Sign In to add comment