From deb9d6cb53057ca8b90d10d6a3bdc5dcfd1b3ee4 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Wed, 8 Feb 2012 12:51:15 +0000 Subject: move files common to client/server into "base" --- src/QXmppBookmarkSet.h | 101 ------------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 src/QXmppBookmarkSet.h (limited to 'src/QXmppBookmarkSet.h') diff --git a/src/QXmppBookmarkSet.h b/src/QXmppBookmarkSet.h deleted file mode 100644 index aa90f2cf..00000000 --- a/src/QXmppBookmarkSet.h +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (C) 2008-2011 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 QXMPPBOOKMARKSET_H -#define QXMPPBOOKMARKSET_H - -#include -#include -#include -#include - -class QDomElement; - -/// \brief The QXmppBookmarkConference class represents a bookmark for a conference room, -/// as defined by XEP-0048: Bookmarks. -/// -class QXmppBookmarkConference -{ -public: - QXmppBookmarkConference(); - - bool autoJoin() const; - void setAutoJoin(bool autoJoin); - - QString jid() const; - void setJid(const QString &jid); - - QString name() const; - void setName(const QString &name); - - QString nickName() const; - void setNickName(const QString &nickName); - -private: - bool m_autoJoin; - QString m_jid; - QString m_name; - QString m_nickName; -}; - -/// \brief The QXmppBookmarkUrl class represents a bookmark for a web page, -/// as defined by XEP-0048: Bookmarks. -/// -class QXmppBookmarkUrl -{ -public: - QString name() const; - void setName(const QString &name); - - QUrl url() const; - void setUrl(const QUrl &url); - -private: - QString m_name; - QUrl m_url; -}; - -/// \brief The QXmppbookmarkSets class represents a set of bookmarks, as defined -/// by XEP-0048: Bookmarks. -/// -class QXmppBookmarkSet -{ -public: - QList conferences() const; - void setConferences(const QList &conferences); - - QList urls() const; - void setUrls(const QList &urls); - - /// \cond - static bool isBookmarkSet(const QDomElement &element); - void parse(const QDomElement &element); - void toXml(QXmlStreamWriter *writer) const; - /// \endconf - -private: - QList m_conferences; - QList m_urls; -}; - -#endif -- cgit v1.2.3