Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. #include "Seat_Row.h"
  4. #include "Address.h"
  5.  
  6. using namespace std;
  7.  
  8. class Venue
  9. {
  10. private:
  11.     string venueName;
  12.     Seat_Row seatRows[1000];
  13.     Address venueAddress;
  14.     int capacity;
  15. public:
  16.     Venue();
  17.     Venue(const string nameOfVenue, Address addressOfVenue, Seat_Row seatRows[1000], int capacity);
  18.     ~Venue(void);
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement