MissionInfo.hh
1.83 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* MissionInfo.hh
*
* Created on: Oct 6, 2014
* Author: m.mazel
*/
#ifndef MISSIONINFO_HH_
#define MISSIONINFO_HH_
#include <iostream>
#include <map>
#include <boost/shared_ptr.hpp>
namespace AMDA {
namespace Info {
//Info keys for mission
#define MISSION_ID "MISSION_ID"
#define MISSION_NAME "MISSION_NAME"
#define MISSION_DESC "MISSION_DESCRIPTION"
#define MISSION_URL "MISSION_URL"
/**
* @class MissionInfo
* @brief Information about a mission.
* @details
*/
class MissionInfo {
public:
MissionInfo () :
_name(""),
_description(""),
_url("")
{}
friend std::ostream& operator<<(std::ostream& out_, const MissionInfo& dsi);
/*
* @brief Get mission id
*/
const std::string& getId() const {
return _id;
}
/*
* @brief Set mission id
*/
void setId(const std::string& id) {
_id = id;
}
/*
* @brief Get mission name
*/
const std::string& getName() const {
return _name;
}
/*
* @brief Set mission name
*/
void setName(const std::string& name) {
_name = name;
}
/*
* @brief Get mission description
*/
const std::string& getDescription() const {
return _description;
}
/*
* @brief Set mission description
*/
void setDescription(const std::string& description) {
_description = description;
}
/*
* @brief Get mission URL
*/
const std::string& getUrl() const {
return _url;
}
/*
* @brief Set mission URL
*/
void setUrl(const std::string& url) {
_url = url;
}
/*
* @brief Get a map of mission info
*/
std::vector<std::pair<std::string,std::string>> getInfoMap();
protected:
std::string _id;
std::string _name;
std::string _description;
std::string _url;
};
typedef boost::shared_ptr<MissionInfo> MissionInfoSPtr;
typedef std::map<std::string,MissionInfoSPtr> MissionInfoMap;
} /* namespace Info */
} /* namespace AMDA */
#endif /* MISSIONINFO_HH_ */