summaryrefslogtreecommitdiff
path: root/telepathy-glib/client-message-internal.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-21 12:31:11 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-09 13:56:26 +0100
commita8d0f9b117f376c8371865b8843c5e2ec86a6702 (patch)
treed5f667750f5724fb8915e7d80345e0eac9d78dc5 /telepathy-glib/client-message-internal.h
parent919d06c79ad9c33262cf916b3feab8030ff313b3 (diff)
downloadtelepathy-glib-a8d0f9b117f376c8371865b8843c5e2ec86a6702.tar.gz
add TpClientMessage
Diffstat (limited to 'telepathy-glib/client-message-internal.h')
-rw-r--r--telepathy-glib/client-message-internal.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/telepathy-glib/client-message-internal.h b/telepathy-glib/client-message-internal.h
new file mode 100644
index 000000000..a0753fa30
--- /dev/null
+++ b/telepathy-glib/client-message-internal.h
@@ -0,0 +1,47 @@
+/*
+ * client-message-internal.h - Header for TpClientMessage (internal)
+ * Copyright (C) 2006-2010 Collabora Ltd.
+ * Copyright (C) 2006-2008 Nokia Corporation
+ *
+ * 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 __TP_CLIENT_MESSAGE_INTERNAL_H__
+#define __TP_CLIENT_MESSAGE_INTERNAL_H__
+
+#include <glib.h>
+
+#include "message.h"
+#include "message-internal.h"
+
+G_BEGIN_DECLS
+
+typedef struct _TpClientMessagePrivate TpClientMessagePrivate;
+
+struct _TpClientMessageClass
+{
+ /*<private>*/
+ TpMessageClass parent_class;
+};
+
+struct _TpClientMessage {
+ /*<private>*/
+ TpMessage parent;
+ TpClientMessagePrivate *priv;
+};
+
+G_END_DECLS
+
+#endif /* __TP_Client_MESSAGE_INTERNAL_H__ */