Sleds/slocr/OCRArg.cpp

20 lines
269 B
C++

#include "OCRArg.h"
using namespace sequencelogic;
OCRArg::OCRArg(int pageNum, std::string fileName)
{
this->fileLoc = fileName;
this->page = pageNum;
}
std::string OCRArg::getFileName()
{
return this->fileLoc;
}
int OCRArg::getPageNum()
{
return this->page;
}