diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-12 16:01:35 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-12 16:01:35 +0200 |
| commit | 2a78066c9fa49517bccebbef2e005a674ab4ad27 (patch) | |
| tree | 6851d8ff348f0b67559e7a09d3db9dc5ecf0bc13 /src/base/QXmppStreamInitiationIq.h | |
| parent | 07d537a2573f1dd06dd69ba6a5e2fa97357c443b (diff) | |
| download | qxmpp-2a78066c9fa49517bccebbef2e005a674ab4ad27.tar.gz | |
make QXmppStreamInitiationIq private API
Diffstat (limited to 'src/base/QXmppStreamInitiationIq.h')
| -rw-r--r-- | src/base/QXmppStreamInitiationIq.h | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/src/base/QXmppStreamInitiationIq.h b/src/base/QXmppStreamInitiationIq.h deleted file mode 100644 index 27e59afd..00000000 --- a/src/base/QXmppStreamInitiationIq.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (C) 2008-2012 The QXmpp developers - * - * Author: - * Jeremy Lainé - * - * Source: - * http://code.google.com/p/qxmpp - * - * This file is a part of QXmpp library. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - */ - -#ifndef QXMPPSTREAMINITIATIONIQ_H -#define QXMPPSTREAMINITIATIONIQ_H - -#include <QDateTime> - -#include "QXmppDataForm.h" -#include "QXmppIq.h" -#include "QXmppTransferManager.h" - -class QDomElement; -class QXmlStreamWriter; - -class QXMPP_EXPORT QXmppStreamInitiationIq : public QXmppIq -{ -public: - enum Profile { - None = 0, - FileTransfer, - }; - - QXmppDataForm featureForm() const; - void setFeatureForm(const QXmppDataForm &form); - - QXmppTransferFileInfo fileInfo() const; - void setFileInfo(const QXmppTransferFileInfo &info); - - QString mimeType() const; - void setMimeType(const QString &mimeType); - - QXmppStreamInitiationIq::Profile profile() const; - void setProfile(QXmppStreamInitiationIq::Profile profile); - - QString siId() const; - void setSiId(const QString &id); - - static bool isStreamInitiationIq(const QDomElement &element); - -protected: - /// \cond - void parseElementFromChild(const QDomElement &element); - void toXmlElementFromChild(QXmlStreamWriter *writer) const; - /// \endcond - -private: - QXmppDataForm m_featureForm; - QXmppTransferFileInfo m_fileInfo; - QString m_mimeType; - Profile m_profile; - QString m_siId; -}; - -#endif |
