00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _TelepathyQt4_Client_streamed_media_channel_h_HEADER_GUARD_
00022 #define _TelepathyQt4_Client_streamed_media_channel_h_HEADER_GUARD_
00023
00024 #ifndef IN_TELEPATHY_QT4_HEADER
00025 #error IN_TELEPATHY_QT4_HEADER
00026 #endif
00027
00028 #include <TelepathyQt4/Client/Channel>
00029
00030 namespace Telepathy
00031 {
00032 namespace Client
00033 {
00034
00035 class StreamedMediaChannel : public Channel
00036 {
00037 Q_OBJECT
00038 Q_DISABLE_COPY(StreamedMediaChannel)
00039
00040 public:
00041 StreamedMediaChannel(Connection *connection, const QString &objectPath,
00042 const QVariantMap &immutableProperties, QObject *parent = 0);
00043 ~StreamedMediaChannel();
00044
00045 private:
00046 struct Private;
00047 friend struct Private;
00048 Private *mPriv;
00049 };
00050
00051 }
00052 }
00053
00054 #endif