#pragma once #include namespace sequencelogic { class OCRArg { public: OCRArg() {} OCRArg(int pageNum, std::string fileName); int getPageNum(); std::string getFileName(); private: std::string fileLoc; int page; }; }