// // Created by light on 19-12-12. // #include #include #include #include #include using namespace std; unique_ptr> read_lines_from_file(string &file_name) { unique_ptr> lines(new vector); string line; ifstream file_handle (file_name.c_str()); while (file_handle.good() && !file_handle.eof()) { getline(file_handle, line); lines->push_back(line); } file_handle.close(); return lines; } int main() { // get file name from the first argument string file_name ("/home/light/CLionProjects/Morden_C++/CMakeLists.txt"); int count = read_lines_from_file(file_name).get()->size(); cout << "File " << file_name << " contains " << count << " lines."; cout<