• Main Page
  • Classes
  • Files
  • File List

Swiften/Elements/AuthSuccess.h

00001 /*
00002  * Copyright (c) 2010 Remko Tronçon
00003  * Licensed under the GNU General Public License v3.
00004  * See Documentation/Licenses/GPLv3.txt for more information.
00005  */
00006 
00007 #pragma once
00008 
00009 #include <vector>
00010 #include <boost/optional.hpp>
00011 
00012 #include <Swiften/Elements/Element.h>
00013 
00014 namespace Swift {
00015   class AuthSuccess : public Element {
00016     public:
00017       AuthSuccess() {}
00018 
00019       const boost::optional<std::vector<unsigned char> >& getValue() const {
00020         return value;
00021       }
00022 
00023       void setValue(const std::vector<unsigned char>& value) {
00024         this->value = boost::optional<std::vector<unsigned char> >(value);
00025       }
00026 
00027     private:
00028       boost::optional<std::vector<unsigned char> > value;
00029   };
00030 }

Generated on Fri Oct 12 2012 21:00:19 for Swiften by  doxygen 1.7.1