jelenpivo123

Osobaa.cpp

Oct 5th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include "Osoba.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6.  
  7. void Osoba::ispisiPodatke() {
  8. cout << "Bice nadjacana..." << endl;
  9. }
  10.  
  11. Osoba::Osoba() {
  12. }
  13.  
  14. Osoba::Osoba(string ime, string prezime, string jmbg) {
  15. this->ime = ime;
  16. this->prezime = prezime;
  17. this->jmbg = jmbg;
  18. }
Add Comment
Please, Sign In to add comment