Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <iostream>
- #include <string>
- using namespace std;
- class Uredjaj{
- public:
- string proizvodjac;
- string model;
- int godinaProizvodnje;
- virtual void ispisiPodatke();
- virtual void proveriBroj()=0;
- Uredjaj();
- Uredjaj(string,string,int);
- };
Advertisement
Add Comment
Please, Sign In to add comment