std::string line{""};
std::getline(fileStream, line);
std::cout << line << std::endl;
Beyond that it would depend on what information is in the file and how you want to use it.
After reading a line from the file as with line 3 you could use a string stream to extract the individual fields. Put them into variables defined in a struct then put the struct in a vector for later use.
Reading the file is easy, what you do with that information will get more involved.
Be more specific with your question show any code you have written and describe where you are having a problem. Add a sample of the data file that the program reads.