/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class SWIFTEN_API AuthSuccess : public ToplevelElement { public: AuthSuccess() {} const boost::optional >& getValue() const { return value; } void setValue(const std::vector& value) { this->value = boost::optional >(value); } private: boost::optional > value; }; }