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