-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArtist.cpp
More file actions
83 lines (71 loc) · 1.47 KB
/
Artist.cpp
File metadata and controls
83 lines (71 loc) · 1.47 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* @file Artist.cpp
* @brief Definitions of certain functions.
*/
#include <stdexcept>
#include "Artist.h"
using namespace std;
using namespace crow;
Artist::Artist(string initialName, string initialType, double initialCost)
{
setName(initialName);
setDescription(initialType);
setCost(initialCost);
}
Artist::Artist(crow::json::rvalue readValueJson)
{
updateFromJson(readValueJson);
}
string Artist::getName()
{
return name;
}
string Artist::setName(string newName)
{
if (newName == "")
{
throw invalid_argument("New name can not be blank");
}
name = newName;
return name;
}
string Artist::getDescription()
{
return type;
}
string Artist::setDescription(string newType)
{
if (newType == "")
{
throw invalid_argument("New description can not be blank");
}
type = newType;
return type;
}
double Artist::getCost()
{
return cost;
}
double Artist::setCost(double newCost)
{
if (newCost < 0)
{
throw invalid_argument("New cost can not be negative");
}
cost = newCost;
return cost;
}
json::wvalue Artist::convertToJson()
{
json::wvalue writeValueJson;
writeValueJson["name"] = name;
writeValueJson["type"] = type;
writeValueJson["cost"] = cost;
return writeValueJson;
}
void Artist::updateFromJson(crow::json::rvalue readValueJson)
{
setName(readValueJson["name"].s());
setDescription(readValueJson["type"].s());
setCost(readValueJson["cost"].d());
}