~ubuntu-branches/ubuntu/raring/telepathy-idle/raring-proposed

« back to all changes in this revision

Viewing changes to src/idle-muc-factory.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonny Lamb
  • Date: 2009-09-14 14:46:37 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090914144637-y15kev7u8prmllee
Tags: 0.1.5-1
* New upstream release.
* debian/rules: Pass --disable-silent-rules to get more verbose build logs.
* debian/control: Upped Standards-Version. (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file is part of telepathy-idle
3
 
 *
4
 
 * Copyright (C) 2006-2007 Collabora Limited
5
 
 * Copyright (C) 2006-2007 Nokia Corporation
6
 
 *
7
 
 * This library is free software; you can redistribute it and/or
8
 
 * modify it under the terms of the GNU Lesser General Public License
9
 
 * version 2.1 as published by the Free Software Foundation.
10
 
 *
11
 
 * This library is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
 * Lesser General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU Lesser General Public
17
 
 * License along with this library; if not, write to the Free Software
18
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef __IDLE_MUC_FACTORY_H__
22
 
#define __IDLE_MUC_FACTORY_H__
23
 
 
24
 
#include <glib-object.h>
25
 
 
26
 
G_BEGIN_DECLS
27
 
 
28
 
typedef struct _IdleMUCFactory IdleMUCFactory;
29
 
typedef struct _IdleMUCFactoryClass IdleMUCFactoryClass;
30
 
 
31
 
struct _IdleMUCFactoryClass {
32
 
        GObjectClass parent_class;
33
 
};
34
 
 
35
 
struct _IdleMUCFactory {
36
 
        GObject parent;
37
 
};
38
 
 
39
 
GType idle_muc_factory_get_type();
40
 
 
41
 
#define IDLE_TYPE_MUC_FACTORY (idle_muc_factory_get_type())
42
 
#define IDLE_MUC_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), IDLE_TYPE_MUC_FACTORY, IdleMUCFactory))
43
 
#define IDLE_MUC_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), IDLE_TYPE_MUC_FACTORY, IdleMUCFactoryClass))
44
 
#define IDLE_IS_MUC_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), IDLE_TYPE_MUC_FACTORY))
45
 
#define IDLE_IS_MUC_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), IDLE_TYPE_MUC_FACTORY))
46
 
#define IDLE_MUC_FACTORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), IDLE_TYPE_MUC_FACTORY, IdleMUCFactoryClass))
47
 
 
48
 
G_END_DECLS
49
 
 
50
 
#endif /* #ifndef __IDLE_MUC_FACTORY_H__ */
51