jelenpivo123

uredjaj.h

Oct 5th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #pragma once
  2. #include <iostream>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. class Uredjaj{
  8. public:
  9.  
  10. string proizvodjac;
  11. string model;
  12. int godinaProizvodnje;
  13.  
  14. virtual void ispisiPodatke();
  15. virtual void proveriBroj()=0;
  16.  
  17. Uredjaj();
  18. Uredjaj(string,string,int);
  19.  
  20.  
  21. };
Advertisement
Add Comment
Please, Sign In to add comment