Sleds/slocr/OCRArg.cpp

20 lines
269 B
C++
Raw Normal View History

2025-03-13 21:28:38 +00:00
#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;
}