-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplication.cpp
More file actions
79 lines (61 loc) · 1.1 KB
/
Copy pathApplication.cpp
File metadata and controls
79 lines (61 loc) · 1.1 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
#include "Application.hpp"
using namespace std;
using namespace nlohmann;
void Application::set_multirun(bool em)
{
multirun = em;
}
Application::Application(string name, string address, bool is_multirun_enabled):
name(name),
address(address),
multirun(is_multirun_enabled)
{
}
bool Application::run()
{
return false;
}
bool Application::is_running()
{
return false;
}
bool Application::is_multirun_enabled()
{
return multirun;
}
void Application::enable_multirun()
{
multirun = 1;
}
void Application::disable_multirun()
{
multirun = 0;
}
void Application::set_data(json& data)
{
set_name(data["name"].get<string>());
set_address(data["address"].get<string>());
set_multirun(data["multirun"].get<bool>());
}
void Application::get_data(json& data)
{
data["name"] = get_name();
data["address"] = get_address();
data["multirun"] = is_multirun_enabled();
}
void Application::set_name(string name)
{
this->name = name;
}
string Application::get_name()
{
return name;
}
void Application::set_address(string address)
{
this->address = address;
}
string Application::get_address()
{
return address;
}