#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;

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