/src/sip/jabber/tomahawksipmessage.h
http://github.com/tomahawk-player/tomahawk · C Header · 50 lines · 23 code · 8 blank · 19 comment · 0 complexity · 13f2f6275d20058fb9f8eba00688d8f0 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef ENTITYTIME_H
- #define ENTITYTIME_H
- #include <jreen/stanzaextension.h>
- #define TOMAHAWK_SIP_MESSAGE_NS QLatin1String("http://www.tomhawk-player.org/sip/transports")
- #include "../sipdllmacro.h"
- class TomahawkSipMessagePrivate;
- class SIPDLLEXPORT TomahawkSipMessage : public Jreen::Payload
- {
- J_PAYLOAD(TomahawkSipMessage)
- Q_DECLARE_PRIVATE(TomahawkSipMessage)
- public:
- // sets visible to true
- TomahawkSipMessage(const QString &ip, unsigned int port, const QString &uniqname, const QString &key);
- // sets visible to false as we dont have any extra information
- TomahawkSipMessage();
- ~TomahawkSipMessage();
- const QString ip() const;
- unsigned int port() const;
- const QString uniqname() const;
- const QString key() const;
- bool visible() const;
- private:
- QScopedPointer<TomahawkSipMessagePrivate> d_ptr;
- };
- #endif // ENTITYTIME_H