#include "ErrorsBase.h"
//ошибка удаления элемента
class DelError:public ErrorBase
{
	int delIndex;
	int ElemsCount;
public:

	DelError();
	DelError(std::string _methodName,std::string _ErrorName, int _delIndex,int _ElemsCount);

	int getDelIndex() const;
	void setDelIndex(int _index);

	int getElemsCount() const;

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