Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Osoba.h"
- #include <iostream>
- using namespace std;
- void Osoba::ispisiPodatke() {
- cout << "Bice nadjacana..." << endl;
- }
- Osoba::Osoba() {
- }
- Osoba::Osoba(string ime, string prezime, string jmbg) {
- this->ime = ime;
- this->prezime = prezime;
- this->jmbg = jmbg;
- }
Add Comment
Please, Sign In to add comment