#pragma once #include #include #include using namespace std; /***********************************************************************/ //函 数 名:AssignWordsFromTest //功 能:从文件读取并分配到对应栏的内存中 //参 数: // @pathName:读取文件地址 // @oneList:一栏数据 // @twoList:存储 // @errorList:存放超过一栏宽度的数据 // @fourList:后备字段 //返 回 值: // -1:关联文件不可用 // -2:两个文件行数不一致 // -3:原数据行空,内容行有数据 // -4:内容行空,原数据行有数据 /***********************************************************************/ int AssignWordsFromTest(std::string pathName, std::vector> &oneList, std::vector> &twoList, std::vector> &errorList, std::vector> &fourList,int &ret); /***********************************************************************/ //函 数 名:GetPaperTips //功 能:从文件读取试卷提示信息 //参 数: // @tipsPath:提示信息配置文件路径 // @tips:读取到的提示信息 //返 回 值: // void /***********************************************************************/ void GetPaperTips(std::string tipsPath, std::string& tips);