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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#ifndef SAVE_H
#define SAVE_H
#include <string>
using namespace std;
class Save
{
private:
int id;
int votesUp, votesDown;
unsigned char * data;
public:
Save(int _id, int _votesUp, int _votesDown, string _userName, string _name):
id(_id),
votesUp(_votesUp),
votesDown(_votesDown),
userName(_userName),
name(_name),
Description("No description provided"),
Date("0/0/0"),
Published(true)
{
}
Save(int _id, int _votesUp, int _votesDown, string _userName, string _name, string description_, string date_, bool published_):
id(_id),
votesUp(_votesUp),
votesDown(_votesDown),
userName(_userName),
name(_name),
Description(description_),
Date(date_),
Published(published_)
{
}
string userName;
string name;
string Description;
string Date;
bool Published;
void SetName(string name){ this->name = name; }
string GetName(){ return name; }
void SetUserName(string userName){ this->userName = userName; }
string GetUserName(){ return userName; }
void SetID(int id){ this->id = id; }
int GetID(){ return id; }
void SetVotesUp(int votesUp){ this->votesUp = votesUp; }
int GetVotesUp(){ return votesUp; }
void SetVotesDown(int votesDown){ this->votesDown = votesDown; }
int GetVotesDown(){ return votesDown; }
unsigned char * GetData() { return data; }
};
#endif // SAVE_H
|