/* Defines EmptyBeer class. 
   Implementation is in emptybeer.cc. */


#ifndef EMPTYBEERH
#define EMPTYBEERH

class EmptyBeer {
  static int count;
 public:
  EmptyBeer(); // default constructor
  ~EmptyBeer(); 
  
  int how_many() const;
};

#endif
