blob: a1714c88a383019ebdb1ec31dab5adbec57d854e (
plain)
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <vector>
#include <string>
#include <Swiften/Elements/Payload.h>
namespace Swift {
class SecurityLabel : public Payload {
public:
typedef boost::shared_ptr<SecurityLabel> ref;
SecurityLabel() {}
const std::string& getDisplayMarking() const { return displayMarking_; }
void setDisplayMarking(const std::string& displayMarking) {
displayMarking_ = displayMarking;
}
const std::string& getForegroundColor() const {
return foregroundColor_;
}
void setForegroundColor(const std::string& foregroundColor) {
foregroundColor_ = foregroundColor;
}
const std::string& getBackgroundColor() const {
return backgroundColor_;
}
void setBackgroundColor(const std::string& backgroundColor) {
backgroundColor_ = backgroundColor;
}
const std::string& getLabel() const { return label_; }
void setLabel(const std::string& label) {
label_ = label;
}
const std::vector<std::string>& getEquivalentLabels() const { return equivalentLabels_; }
void addEquivalentLabel(const std::string& label) {
equivalentLabels_.push_back(label);
}
private:
std::string displayMarking_;
std::string foregroundColor_;
std::string backgroundColor_;
std::string label_;
std::vector<std::string> equivalentLabels_;
};
}
|