summaryrefslogtreecommitdiff
path: root/examples/cm/extended/conn.h
blob: ba0888cd7e90c718970953006c93fd817738c7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * conn.h - header for an example connection
 *
 * Copyright © 2007-2010 Collabora Ltd. <http://www.collabora.co.uk/>
 * Copyright © 2007 Nokia Corporation
 *
 * Copying and distribution of this file, with or without modification,
 * are permitted in any medium without royalty provided the copyright
 * notice and this notice are preserved.
 */

#ifndef __EXAMPLE_EXTENDED_CONN_H__
#define __EXAMPLE_EXTENDED_CONN_H__

#include <glib-object.h>
#include <telepathy-glib/telepathy-glib.h>

G_BEGIN_DECLS

typedef struct _ExampleExtendedConnection ExampleExtendedConnection;
typedef struct _ExampleExtendedConnectionClass ExampleExtendedConnectionClass;
typedef struct _ExampleExtendedConnectionPrivate ExampleExtendedConnectionPrivate;

struct _ExampleExtendedConnectionClass {
    TpBaseConnectionClass parent_class;
    TpContactsMixinClass contacts_mixin;
};

struct _ExampleExtendedConnection {
    TpBaseConnection parent;
    TpContactsMixin contacts_mixin;

    ExampleExtendedConnectionPrivate *priv;
};

GType example_extended_connection_get_type (void);

/* TYPE MACROS */
#define EXAMPLE_TYPE_EXTENDED_CONNECTION \
  (example_extended_connection_get_type ())
#define EXAMPLE_EXTENDED_CONNECTION(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), EXAMPLE_TYPE_EXTENDED_CONNECTION, \
                              ExampleExtendedConnection))
#define EXAMPLE_EXTENDED_CONNECTION_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), EXAMPLE_TYPE_EXTENDED_CONNECTION, \
                           ExampleExtendedConnectionClass))
#define EXAMPLE_IS_EXTENDED_CONNECTION(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), EXAMPLE_TYPE_EXTENDED_CONNECTION))
#define EXAMPLE_IS_EXTENDED_CONNECTION_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), EXAMPLE_TYPE_EXTENDED_CONNECTION))
#define EXAMPLE_EXTENDED_CONNECTION_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), EXAMPLE_TYPE_EXTENDED_CONNECTION, \
                              ExampleExtendedConnectionClass))

const gchar * const *example_extended_connection_get_possible_interfaces (
    void);

G_END_DECLS

#endif