#pragma once #include #include using namespace std; class FileTools { public: /* * brief: Read the file provided and store each word/line in the output */ static void ExtractWordsFromFile(const string& iFilePath, vector& oWords); /* * brief: Save the porcessed words to an output file */ static void SaveRseult(const vector& iWords, const string& iPath, bool isReverse); };