42 : title(
""), platform(
""), rating(0), genre() {
54 Game(
const string& title,
const string& platform,
double rating,
55 const vector<string>& genre)
56 : title(title), platform(platform), rating(rating), genre(genre) {
88 this->platform = platform;
102 this->rating = rating;
Game(const string &title, const string &platform, double rating, const vector< string > &genre)
Definition: Game.h:54
void setPlatformType(const string &platform)
Definition: Game.h:87
double getRating() const
Definition: Game.h:94
void setGameGenre(const vector< string > &genre)
Definition: Game.h:116
vector< string > getGameGenre() const
Definition: Game.h:109
these methods convert byte arrays in to base64 codes and are used in BRIDGES to represent the color a...
Definition: alltypes.h:4
void setRating(double rating)
Definition: Game.h:101
string getTitle() const
Definition: Game.h:64
Game()
Definition: Game.h:41
A Game object, used along with the Games data source.
Definition: Game.h:29
void setTitle(const string &title)
Definition: Game.h:71
string getPlatformType() const
Definition: Game.h:79