123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- #ifndef MOVIE_H
- #define MOVIE_H
-
-
-
- #include <string>
- #include <QDebug>
- #include "filemanip.h"
- #include <QString>
- #include <QStringList>
- #include <iostream>
-
- using namespace std ;
-
-
-
-
-
-
-
-
-
-
-
-
- string getMovieByName(string moviename, filemanip &file ) ;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string getMovieByPosition(int position, filemanip &file) ;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- void showMovies(filemanip &file, int start=1, int end=10) ;
-
-
-
-
-
-
-
-
-
-
-
- void showMovies(filemanip &file, string keyword);
-
-
-
-
-
-
-
-
-
-
-
-
- void showMovie(string movieinfo) ;
-
-
-
-
-
-
-
-
-
-
-
-
- string getMovieName(string movieinfo) ;
-
-
-
-
-
-
-
-
-
-
-
- string getMovieRating(string movieinfo) ;
-
-
-
-
-
-
-
-
-
-
-
- string getMovieYear(string movieinfo) ;
-
-
-
-
-
-
-
-
-
-
-
- string getMovieGenre(string movieinfo) ;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- void getMovieInfo(string movieinfo, string &rating, string &year,
- string &genre);
-
-
-
- #endif
|