QXmppClientExtension.cpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright (C) 2008-2012 The QXmpp developers
  3. *
  4. * Author:
  5. * Jeremy Lainé
  6. *
  7. * Source:
  8. * http://code.google.com/p/qxmpp
  9. *
  10. * This file is a part of QXmpp library.
  11. *
  12. * This library is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU Lesser General Public
  14. * License as published by the Free Software Foundation; either
  15. * version 2.1 of the License, or (at your option) any later version.
  16. *
  17. * This library is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. * Lesser General Public License for more details.
  21. *
  22. */
  23. #include <QStringList>
  24. #include "QXmppClientExtension.h"
  25. class QXmppClientExtensionPrivate
  26. {
  27. public:
  28. QXmppClient *client;
  29. };
  30. /// Constructs a QXmppClient extension.
  31. ///
  32. QXmppClientExtension::QXmppClientExtension()
  33. : d(new QXmppClientExtensionPrivate)
  34. {
  35. d->client = 0;
  36. }
  37. /// Destroys a QXmppClient extension.
  38. ///
  39. QXmppClientExtension::~QXmppClientExtension()
  40. {
  41. delete d;
  42. }
  43. /// Returns the discovery features to add to the client.
  44. ///
  45. QStringList QXmppClientExtension::discoveryFeatures() const
  46. {
  47. return QStringList();
  48. }
  49. /// Returns the discovery identities to add to the client.
  50. ///
  51. QList<QXmppDiscoveryIq::Identity> QXmppClientExtension::discoveryIdentities() const
  52. {
  53. return QList<QXmppDiscoveryIq::Identity>();
  54. }
  55. /// Returns the client which loaded this extension.
  56. ///
  57. QXmppClient *QXmppClientExtension::client()
  58. {
  59. return d->client;
  60. }
  61. /// Sets the client which loaded this extension.
  62. ///
  63. /// \param client
  64. void QXmppClientExtension::setClient(QXmppClient *client)
  65. {
  66. d->client = client;
  67. }