10 #include <QStringList>
string getMovieGenre(string)
Given a movie line from the file returns the movie genre.
Definition: movie.cpp:132
string getMovieByPosition(int, filemanip &)
getMovieByPosition
Definition: movie.cpp:10
string getMovieYear(string)
Given a movie line from the file returns the movie release year.
Definition: movie.cpp:121
Definition: filemanip.h:8
void showMovie(string)
Display the movie information of a | separated line with movie info. Example line: Ninja Turtles: The...
Definition: movie.cpp:50
string getMovieRating(string)
Given a movie line from the file returns the movie rating.
Definition: movie.cpp:110
string getMovieByName(string, filemanip &)
Finds the information of a movie given its name.
Definition: movie.cpp:33
string getMovieName(string)
Given a movie line from the file returns the movie name.
Definition: movie.cpp:100
void showMovies(filemanip &, int=1, int=10)
Display the information of the movies in a file from line start to line end.
Definition: movie.cpp:63
void getMovieInfo(string, string &, string &, string &, string &)
Given a movie line from the file returns by reference the movie name, rating, year, and genre.