diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-05-08 15:11:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-05-08 15:11:22 (GMT) |
commit | 52bd37a759acc7edbd616c745ff64ac70ae41b9c (patch) | |
tree | 2493313586ad930256ebae1d49a369af00b42089 /Swiften/SASL/DIGESTMD5Properties.h | |
parent | 85c1484a546d484819254230319f9ff09169aa9b (diff) | |
download | swift-contrib-52bd37a759acc7edbd616c745ff64ac70ae41b9c.zip swift-contrib-52bd37a759acc7edbd616c745ff64ac70ae41b9c.tar.bz2 |
Added DIGESTMD5Properties parsing.
Diffstat (limited to 'Swiften/SASL/DIGESTMD5Properties.h')
-rw-r--r-- | Swiften/SASL/DIGESTMD5Properties.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/SASL/DIGESTMD5Properties.h b/Swiften/SASL/DIGESTMD5Properties.h index a92f99b..4d3a4fe 100644 --- a/Swiften/SASL/DIGESTMD5Properties.h +++ b/Swiften/SASL/DIGESTMD5Properties.h @@ -7,6 +7,7 @@ #pragma once #include <map> +#include <boost/optional.hpp> #include "Swiften/Base/String.h" #include "Swiften/Base/ByteArray.h" @@ -16,6 +17,8 @@ namespace Swift { public: DIGESTMD5Properties(); + boost::optional<String> getValue(const String& key); + void setValue(const String& key, const String& value); ByteArray serialize() const; |