jelenpivo123

registracija.cpp

Oct 5th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include "Registracija.h"
  4. using namespace std;
  5.  
  6. void Registracija::setInformacije(string brojRegistracije, string datumRegistracije){
  7.  
  8. this->brojRegistracije = brojRegistracije;
  9. this->datumRegistracije = datumRegistracije;
  10.  
  11. }
  12.  
  13. void Registracija::ispisiInformacije(){
  14.  
  15. cout<<"Broj registracije: " <<this->getBrojRegistracije() << " Datum registracije: " <<this->getDatumRegistracije()<<endl;
  16. }
  17.  
  18. string Registracija::getBrojRegistracije(){
  19.  
  20. return this->brojRegistracije;
  21. }
  22. string Registracija::getDatumRegistracije(){
  23.  
  24. return this->datumRegistracije;
  25. }
  26.  
  27. Registracija::Registracija(){
  28.  
  29. }
  30.  
  31. Registracija::Registracija(string brojRegistracije, string datumRegistracije){
  32.  
  33. this->brojRegistracije = brojRegistracije;
  34. this->datumRegistracije = datumRegistracije;
  35. }
Add Comment
Please, Sign In to add comment