summaryrefslogtreecommitdiff
path: root/farstream/telepathy-farstream/channel-priv.h
blob: 8fdee93a57367aeabeb69dbd16af8e999bbae86d (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
#ifndef __TF_CHANNEL_PRIV_H__
#define __TF_CHANNEL_PRIV_H__

#include "channel.h"

G_BEGIN_DECLS


struct _TfChannel{
  GObject parent;

  /*< private >*/

  TfChannelPrivate *priv;
};

struct _TfChannelClass{
  GObjectClass parent_class;

  /*< private >*/

  gpointer unused[4];
};


G_END_DECLS

#endif /* __TF_CHANNEL_PRIV_H__ */