Скачиваний:
14
Добавлен:
01.05.2014
Размер:
826 б
Скачать
// Project.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "Project.h"

#include "CManager.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// The one and only application object

CWinApp theApp;

using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
	int nRetCode = 0;

	// initialize MFC and print and error on failure
	if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
	{
		// TODO: change error code to suit your needs
		_tprintf(_T("Fatal Error: MFC initialization failed\n"));
		nRetCode = 1;
	}
	else
	{
		CManager manager;
		for (int i=0; i<10; i++)
		{
			manager.createProducer();
			Sleep(50);
			manager.createConsumer();
			Sleep(100);
		}

		Sleep(60000);
	}

	return nRetCode;
}
Соседние файлы в папке Project