diff options
Diffstat (limited to 'src/client/SaveInfo.cpp')
| -rw-r--r-- | src/client/SaveInfo.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/client/SaveInfo.cpp b/src/client/SaveInfo.cpp index da1033f..1df74c7 100644 --- a/src/client/SaveInfo.cpp +++ b/src/client/SaveInfo.cpp @@ -45,6 +45,21 @@ string SaveInfo::GetName() { return name; } +void SaveInfo::SetDescription(string description) { + Description = description; +} +string SaveInfo::GetDescription() { + return Description; +} + +void SaveInfo::SetPublished(bool published) { + Published = published; +} + +bool SaveInfo::GetPublished() { + return Published; +} + void SaveInfo::SetVote(int vote) { this->vote = vote; |
