Скачиваний:
10
Добавлен:
01.05.2014
Размер:
486 б
Скачать
#include "stdafx.h"
#include "DelError.h"

DelError::DelError():ErrorBase()
{
	delIndex=0;
	ElemsCount=0;
}

DelError::DelError(std::string _methodName,std::string _ErrorName, int _delIndex,int _ElemsCount)
:ErrorBase()
{
	delIndex=_delIndex;
	ElemsCount=_ElemsCount;
}

int DelError::getDelIndex() const
{
	return delIndex;
}
	void DelError::setDelIndex(int _index)
	{
		delIndex=_index;
	}

	int DelError::getElemsCount() const
	{
		return ElemsCount;
	}
Соседние файлы в папке lab22