-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVenue.cpp
More file actions
83 lines (71 loc) · 1.47 KB
/
Venue.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 Venue.cpp
* @brief Definitions of certain functions.
*/
#include <stdexcept>
#include "Venue.h"
using namespace std;
using namespace crow;
Venue::Venue(string initialCity, string initialAddress, double initialCost)
{
setCity(initialCity);
setAddress(initialAddress);
setCost(initialCost);
}
Venue::Venue(crow::json::rvalue readValueJson)
{
updateFromJson(readValueJson);
}
string Venue::getCity()
{
return city;
}
string Venue::setCity(string newCity)
{
if (newCity == "")
{
throw invalid_argument("New city can not be blank");
}
city = newCity;
return city;
}
string Venue::getAddress()
{
return address;
}
string Venue::setAddress(string newAddress)
{
if (newAddress == "")
{
throw invalid_argument("New address can not be blank");
}
address = newAddress;
return address;
}
double Venue::getCost()
{
return cost;
}
double Venue::setCost(double newCost)
{
if (newCost < 0)
{
throw invalid_argument("New cost can not be negative");
}
cost = newCost;
return cost;
}
json::wvalue Venue::convertToJson()
{
json::wvalue writeValueJson;
writeValueJson["city"] = city;
writeValueJson["address"] = address;
writeValueJson["cost"] = cost;
return writeValueJson;
}
void Venue::updateFromJson(crow::json::rvalue readValueJson)
{
setCity(readValueJson["city"].s());
setAddress(readValueJson["address"].s());
setCost(readValueJson["cost"].d());
}