summaryrefslogtreecommitdiff
path: root/TelepathyQt/channel-dispatch-operation-internal.h
diff options
context:
space:
mode:
authorJeremy Whiting <jeremy.whiting@collabora.com>2011-11-10 15:21:06 -0700
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-11-24 14:45:44 -0200
commitbe40b6f313c8d7b1f0fb59fd06ea87b0934e4bad (patch)
treeed66d713ce0d85acf0bcb65d3145693e4d150dae /TelepathyQt/channel-dispatch-operation-internal.h
parentaafde57c570a56bb98df4103a4ee38ed25b91897 (diff)
Renamed TelepathyQt4 directory to TelepathyQt.
Diffstat (limited to 'TelepathyQt/channel-dispatch-operation-internal.h')
-rw-r--r--TelepathyQt/channel-dispatch-operation-internal.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/TelepathyQt/channel-dispatch-operation-internal.h b/TelepathyQt/channel-dispatch-operation-internal.h
new file mode 100644
index 00000000..7eef7253
--- /dev/null
+++ b/TelepathyQt/channel-dispatch-operation-internal.h
@@ -0,0 +1,51 @@
+/**
+ * This file is part of TelepathyQt
+ *
+ * @copyright Copyright (C) 2011 Collabora Ltd. <http://www.collabora.co.uk/>
+ * @copyright Copyright (C) 2011 Nokia Corporation
+ * @license LGPL 2.1
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef _TelepathyQt_channel_dispatch_operation_internal_h_HEADER_GUARD_
+#define _TelepathyQt_channel_dispatch_operation_internal_h_HEADER_GUARD_
+
+#include <TelepathyQt/AbstractClientHandler>
+#include <TelepathyQt/PendingOperation>
+
+namespace Tp
+{
+
+class TP_QT_NO_EXPORT ChannelDispatchOperation::PendingClaim : public PendingOperation
+{
+ Q_OBJECT
+
+public:
+ PendingClaim(const ChannelDispatchOperationPtr &op,
+ const AbstractClientHandlerPtr &handler = AbstractClientHandlerPtr());
+ ~PendingClaim();
+
+private Q_SLOTS:
+ TP_QT_NO_EXPORT void onClaimFinished(Tp::PendingOperation *op);
+
+private:
+ ChannelDispatchOperationPtr mDispatchOp;
+ AbstractClientHandlerPtr mHandler;
+};
+
+} // Tp
+
+#endif