예제 #1
0
파일: fifo.cpp 프로젝트: alarouche/cppao
	Producer(int count, queue<int> & consumer) : m_count(count), m_consumer(consumer)
	{
		consumer.wait(this);
	}