Added Bits Of Binary (XEP-0231) support
[iris.git] / src / xmpp / sasl / plainmessage.h
blobc8098746640c7943e8c7f7051a7a191930be7eee
1 /*
2 * Copyright (C) 2008 Remko Troncon
3 * See COPYING for license details.
4 */
6 #ifndef PLAINMESSAGE_H
7 #define PLAINMESSAGE_H
9 #include <QByteArray>
10 #include <QString>
12 namespace XMPP {
13 class PLAINMessage
15 public:
16 PLAINMessage(const QString& authzid, const QString& authcid, const QByteArray& password);
18 const QByteArray& getValue() {
19 return value_;
22 private:
23 QByteArray value_;
27 #endif