File indexing completed on 2024-06-23 04:03:33

0001 /*
0002  * Copyright (C) 2008  Remko Troncon
0003  * See COPYING for license details.
0004  */
0005 
0006 #ifndef PLAINMESSAGE_H
0007 #define PLAINMESSAGE_H
0008 
0009 #include <QByteArray>
0010 #include <QString>
0011 
0012 namespace XMPP {
0013     class PLAINMessage
0014     {
0015         public:
0016             PLAINMessage(const QString& authzid, const QString& authcid, const QByteArray& password);
0017 
0018             const QByteArray& getValue() {
0019                 return value_;
0020             }
0021 
0022         private:
0023             QByteArray value_;
0024     };
0025 }
0026 
0027 #endif