Advertisement
Guest User

Celija.h

a guest
Nov 23rd, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <string>
  2. #include <vector>
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. class Celija
  8. {
  9. private:
  10.     int brojKreveta, broj;
  11.     string blok;
  12.  
  13. public:
  14.  
  15.     Celija(int, string, int);
  16.     int getbrojKreveta() const;
  17.     int getbroj() const;
  18.     string getblok() const;
  19.    
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement