-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMovieDatabase.cpp
36 lines (29 loc) · 895 Bytes
/
MovieDatabase.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "MovieDatabase.h"
#include "Movie.h"
#include <string>
#include <vector>
using namespace std;
MovieDatabase::MovieDatabase()
{
// Replace this line with correct code.
}
bool MovieDatabase::load(const string& filename)
{
return false; // Replace this line with correct code.
}
Movie* MovieDatabase::get_movie_from_id(const string& id) const
{
return nullptr; // Replace this line with correct code.
}
vector<Movie*> MovieDatabase::get_movies_with_director(const string& director) const
{
return vector<Movie*>(); // Replace this line with correct code.
}
vector<Movie*> MovieDatabase::get_movies_with_actor(const string& actor) const
{
return vector<Movie*>(); // Replace this line with correct code.
}
vector<Movie*> MovieDatabase::get_movies_with_genre(const string& genre) const
{
return vector<Movie*>(); // Replace this line with correct code.
}