HenriAugusto

Place class

Mar 13th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1.     class Place {
  2.     public:
  3.         Place() {};
  4.         ~Place() {};
  5.         int BGImg;
  6.         int Name;
  7.        
  8.     };
  9.    
  10.    
  11.     int main()
  12.     {
  13.         class Place; //try commenting this line
  14.         Place c_place;
  15.         return 0;
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment