diff options
Diffstat (limited to 'src/sip-connection-manager.h')
-rw-r--r-- | src/sip-connection-manager.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/sip-connection-manager.h b/src/sip-connection-manager.h new file mode 100644 index 0000000..76cad60 --- /dev/null +++ b/src/sip-connection-manager.h @@ -0,0 +1,62 @@ +/* + * sip-connection-manager.h - Header for SIPConnectionManager + * Copyright (C) 2005 Collabora Ltd. + * Copyright (C) 2005,2006 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 + * version 2.1 as published by the Free Software Foundation. + * + * 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 __SIP_CONNECTION_MANAGER_H__ +#define __SIP_CONNECTION_MANAGER_H__ + +#include <glib-object.h> + +#include <telepathy-glib/base-connection-manager.h> + +G_BEGIN_DECLS + +typedef struct _SIPConnectionManager SIPConnectionManager; +typedef struct _SIPConnectionManagerClass SIPConnectionManagerClass; +typedef struct _SIPConnectionManagerPrivate SIPConnectionManagerPrivate; + +struct _SIPConnectionManagerClass { + TpBaseConnectionManagerClass parent_class; +}; + +struct _SIPConnectionManager { + TpBaseConnectionManager parent; + SIPConnectionManagerPrivate *priv; +}; + +GType sip_connection_manager_get_type(void); + +/* TYPE MACROS */ +#define SIP_TYPE_CONNECTION_MANAGER \ + (sip_connection_manager_get_type()) +#define SIP_CONNECTION_MANAGER(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST((obj), SIP_TYPE_CONNECTION_MANAGER, SIPConnectionManager)) +#define SIP_CONNECTION_MANAGER_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass), SIP_TYPE_CONNECTION_MANAGER, SIPConnectionManagerClass)) +#define SIP_IS_CONNECTION_MANAGER(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE((obj), SIP_TYPE_CONNECTION_MANAGER)) +#define SIP_IS_CONNECTION_MANAGER_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE((klass), SIP_TYPE_CONNECTION_MANAGER)) +#define SIP_CONNECTION_MANAGER_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), SIP_TYPE_CONNECTION_MANAGER, SIPConnectionManagerClass)) + +extern const TpCMProtocolSpec sofiasip_protocols[]; + +G_END_DECLS + +#endif /* #ifndef __SIP_CONNECTION_MANAGER_H__*/ |