diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-11-14 17:20:52 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-11-14 17:20:52 +0000 |
commit | e7d80995d3296feccffe74d6be5dd02f9b609521 (patch) | |
tree | 1e42dc96b3fca47793018ff5a2ddfa9271be2a15 /telepathy-glib/connection-manager.h | |
parent | 66aa2f31749f68a421d8c931f4f85057dd03efcc (diff) | |
download | telepathy-glib-e7d80995d3296feccffe74d6be5dd02f9b609521.tar.gz |
Add the beginnings of client-side wrappers
20071114172052-53eee-7cae9e8b89741f9fdfca6e866279dd2f598c29e4.gz
Diffstat (limited to 'telepathy-glib/connection-manager.h')
-rw-r--r-- | telepathy-glib/connection-manager.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/telepathy-glib/connection-manager.h b/telepathy-glib/connection-manager.h new file mode 100644 index 000000000..7000d4939 --- /dev/null +++ b/telepathy-glib/connection-manager.h @@ -0,0 +1,54 @@ +/* + * connection-manager.h - proxy for a Telepathy connection manager + * + * Copyright (C) 2007 Collabora Ltd. + * + * 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_CONNECTION_MANAGER_H__ +#define __TP_CONNECTION_MANAGER_H__ + +#include <telepathy-glib/proxy.h> + +G_BEGIN_DECLS + +typedef struct _TpConnectionManager TpConnectionManager; +typedef struct _TpConnectionManagerClass TpConnectionManagerClass; + +GType tp_connection_manager_get_type (void); + +/* TYPE MACROS */ +#define TP_TYPE_CONNECTION_MANAGER \ + (tp_connection_manager_get_type ()) +#define TP_CONNECTION_MANAGER(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_CONNECTION_MANAGER, \ + TpConnectionManager)) +#define TP_CONNECTION_MANAGER_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_CONNECTION_MANAGER, \ + TpConnectionManagerClass)) +#define TP_IS_CONNECTION_MANAGER(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_CONNECTION_MANAGER)) +#define TP_IS_CONNECTION_MANAGER_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_CONNECTION_MANAGER)) +#define TP_CONNECTION_MANAGER_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONNECTION_MANAGER, \ + TpConnectionManagerClass)) + +#include <telepathy-glib/_gen/tp-cli-connection-manager-interfaces.h> + +G_END_DECLS + +#endif |