Скачиваний:
10
Добавлен:
17.06.2016
Размер:
918 б
Скачать
#pragma once

namespace OEMInf
{

	class Generation
	{
	public:
//JAVA TO C++ CONVERTER WARNING: Java to C++ Converter has converted this array to a pointer. You will need to call 'delete[]' where appropriate:
//ORIGINAL LINE: int[] thisBidProcessingTime;
		int *thisBidProcessingTime;
//JAVA TO C++ CONVERTER WARNING: Java to C++ Converter has converted this array to a pointer. You will need to call 'delete[]' where appropriate:
//ORIGINAL LINE: int[] newBidArrivingTime;
		int *newBidArrivingTime;

		virtual int makeRandomTime(int middle, int variation);

		virtual int getThisBidProcessingTime(int i);

		virtual int getNewBidArrivingTime(int y);

		Generation();

		Generation(int bidCount);

		virtual void getGenerationObject(int bidCount, int middleNewBidArrivingTime, int variationNewBidArrivingTime, int middleThisBidProcessingTime, int variationThisBidProcessingTime);
	};

}
Соседние файлы в папке ConsoleApplication1