dusanrs

hirurg.hpp

Dec 16th, 2021 (edited)
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.84 KB | None | 0 0
  1. #ifndef HIRURG_HPP_INCLUDED
  2. #define HIRURG_HPP_INCLUDED
  3. #include "lekar.hpp"
  4.  
  5.  
  6. enum SPECIJALNOST{OPSTA,KARDIO,NEURO};
  7. class Hirurg : public Lekar{
  8. private:
  9.     SPECIJALNOST spec;
  10. public:
  11.     Hirurg() : Lekar(),spec(){}
  12.  
  13.     Hirurg(const DinString &ds1,const DinString &ds2,const DinString &ds3,int bl,SPECIJALNOST sp) : Lekar(ds1,ds2,ds3,bl), spec(sp) {}
  14.  
  15.     Hirurg(const Hirurg &h1) : Lekar((Lekar)h1),spec(h1.spec) {}
  16.  
  17.     void ispis() const {
  18.         Lekar::ispis();
  19.         cout<<"Specijalizacija"<<endl;
  20.         switch(spec){
  21.             case OPSTA : cout<<"OPSTA"<<endl;
  22.                          break;
  23.             case KARDIO : cout<<"KARDIO"<<endl;
  24.                          break;
  25.             case NEURO : cout<<"NEURO"<<endl;
  26.                          break;
  27.         }
  28.  
  29.  
  30.     }
  31.  
  32.  
  33.  
  34. };
  35.  
  36.  
  37. #endif // HIRURG_HPP_INCLUDED
  38.  
Add Comment
Please, Sign In to add comment