jelenpivo123

televizor.h

Oct 5th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include "Uredjaj.h"
  4. #include "Ekran.h"
  5.  
  6. using namespace std;
  7.  
  8. class Televizor : public Uredjaj, public Ekran{
  9.  
  10. public:
  11. int tezina;
  12. string serijskiBroj;
  13.  
  14. friend void prikaziSerijskiBroj(Televizor t);
  15. void proveriBroj(); // poziv ciste evirtuelne funkcije za proveru broja
  16. void ispisiPodatke();
  17. Televizor();
  18. Televizor(string,string,int,int,string,string,int,string);
  19.  
  20. };
Advertisement
Add Comment
Please, Sign In to add comment