My Project
movie.h
1 #ifndef MOVIE_H
2 #define MOVIE_H
3 
4 #include <string>
5 #include <QDebug>
6 #include "filemanip.h"
7 #include <QString>
8 #include <QStringList>
9 #include <iostream>
10 
11 using namespace std ;
12 
24 string getMovieByName(string, filemanip & ) ;
25 
39 string getMovieByPosition(int, filemanip &) ;
40 
54 void showMovies(filemanip &, int=1, int=10) ;
55 
66 void showMovies(filemanip &file, string keyword);
67 
68 
79 void showMovie(string) ;
80 
81 
82 
92 string getMovieName(string) ;
93 
104 string getMovieRating(string) ;
105 
116 string getMovieYear(string) ;
117 
128 string getMovieGenre(string) ;
129 
146 void getMovieInfo(string, string &, string &, string &,
147  string &);
148 
149 
150 #endif // MOVIE_H
Definition: filemanip.h:8