コード例 #1
0
ファイル: fifo.cpp プロジェクト: alarouche/cppao
	Producer(int count, queue<int> & consumer) : m_count(count), m_consumer(consumer)
	{
		consumer.wait(this);
	}