// table.h   Table class for Lab10
// James Atlas and Phill Conrad, for CISC181, Fall 2004

// Currently, a table is a very simple object.  In the project
// that follows this lab, more attributes (data members)
// and methods (member functions) will be added to the table.

#ifndef TABLE_H
#define TABLE_H

class Table
{
  public:
    Table();
    ~Table();
    
    int getNumberOfGuests();
    void setNumberOfGuests(int n);
    
  private:
    int numberOfGuests;    
};

#endif

