// exception2.h By: Aiman Hanna - ©1993-2006 Aiman Hanna #include #include class ProducerConsumer { public: ProducerConsumer(); bool isEmpty(); bool isFull(); bool produceItem( int ); bool consumeItem(); void displayBuffContents(); private: int buff[10]; };