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