~ubuntu-branches/ubuntu/oneiric/telepathy-idle/oneiric

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jonny Lamb
  • Date: 2009-09-14 14:46:37 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090914144637-71cey14tm0ni8jgd
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_MANAGER_H__
 
22
#define __IDLE_MUC_MANAGER_H__
 
23
 
 
24
#include <glib-object.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
typedef struct _IdleMUCManager IdleMUCManager;
 
29
typedef struct _IdleMUCManagerClass IdleMUCManagerClass;
 
30
 
 
31
struct _IdleMUCManagerClass {
 
32
        GObjectClass parent_class;
 
33
};
 
34
 
 
35
struct _IdleMUCManager {
 
36
        GObject parent;
 
37
};
 
38
 
 
39
GType idle_muc_manager_get_type();
 
40
 
 
41
#define IDLE_TYPE_MUC_MANAGER (idle_muc_manager_get_type())
 
42
#define IDLE_MUC_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), IDLE_TYPE_MUC_MANAGER, IdleMUCManager))
 
43
#define IDLE_MUC_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), IDLE_TYPE_MUC_MANAGER, IdleMUCManagerClass))
 
44
#define IDLE_IS_MUC_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), IDLE_TYPE_MUC_MANAGER))
 
45
#define IDLE_IS_MUC_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), IDLE_TYPE_MUC_MANAGER))
 
46
#define IDLE_MUC_MANAGER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), IDLE_TYPE_MUC_MANAGER, IdleMUCManagerClass))
 
47
 
 
48
G_END_DECLS
 
49
 
 
50
#endif /* #ifndef __IDLE_MUC_MANAGER_H__ */
 
51