diff options
Diffstat (limited to 'Swiften/Elements/SecurityLabel.h')
-rw-r--r-- | Swiften/Elements/SecurityLabel.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Swiften/Elements/SecurityLabel.h b/Swiften/Elements/SecurityLabel.h index 748c65e..0f0311e 100644 --- a/Swiften/Elements/SecurityLabel.h +++ b/Swiften/Elements/SecurityLabel.h @@ -1,43 +1,42 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <string> #include <vector> #include <Swiften/Base/API.h> -#include <Swiften/Base/Override.h> #include <Swiften/Elements/Payload.h> namespace Swift { class SWIFTEN_API SecurityLabel : public Payload { public: SecurityLabel(); virtual ~SecurityLabel(); const std::vector< std::string >& getEquivalentLabels() const { return equivalentLabels; } void setEquivalentLabels(const std::vector< std::string >& value) { this->equivalentLabels = value ; } void addEquivalentLabel(const std::string& value) { this->equivalentLabels.push_back(value); } const std::string& getForegroundColor() const { return foregroundColor; } void setForegroundColor(const std::string& value) { this->foregroundColor = value ; } |