~ubuntu-branches/ubuntu/karmic/tasks/karmic

« back to all changes in this revision

Viewing changes to libkoto/koto-all-group.h

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton
  • Date: 2007-08-13 21:23:04 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070813212304-lygqq9gtx4g548w9
Tags: 0.11-1
* New upstream release
  - Fix crash when deleting tasks (Fixes: #437097)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 OpenedHand Ltd
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it under
 
5
 * the terms of the GNU General Public License as published by the Free Software
 
6
 * Foundation; either version 2 of the License, or (at your option) any later
 
7
 * version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
11
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 
12
 * details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License along with
 
15
 * this program; if not, write to the Free Software Foundation, Inc., 51
 
16
 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 */
 
18
 
 
19
#ifndef _KOTO_ALL_GROUP
 
20
#define _KOTO_ALL_GROUP
 
21
 
 
22
#include "koto-group.h"
 
23
 
 
24
G_BEGIN_DECLS
 
25
 
 
26
#define KOTO_TYPE_ALL_GROUP koto_all_group_get_type()
 
27
 
 
28
#define KOTO_ALL_GROUP(obj) \
 
29
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
 
30
  KOTO_TYPE_ALL_GROUP, KotoAllGroup))
 
31
 
 
32
#define KOTO_ALL_GROUP_CLASS(klass) \
 
33
  (G_TYPE_CHECK_CLASS_CAST ((klass), \
 
34
  KOTO_TYPE_ALL_GROUP, KotoAllGroupClass))
 
35
 
 
36
#define KOTO_IS_ALL_GROUP(obj) \
 
37
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
 
38
  KOTO_TYPE_ALL_GROUP))
 
39
 
 
40
#define KOTO_IS_ALL_GROUP_CLASS(klass) \
 
41
  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
 
42
  KOTO_TYPE_ALL_GROUP))
 
43
 
 
44
#define KOTO_ALL_GROUP_GET_CLASS(obj) \
 
45
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
 
46
  KOTO_TYPE_ALL_GROUP, KotoAllGroupClass))
 
47
 
 
48
typedef struct {
 
49
  KotoGroup parent;
 
50
} KotoAllGroup;
 
51
 
 
52
typedef struct {
 
53
  KotoGroupClass parent_class;
 
54
} KotoAllGroupClass;
 
55
 
 
56
GType koto_all_group_get_type (void);
 
57
 
 
58
KotoGroup* koto_all_group_new (void);
 
59
 
 
60
G_END_DECLS
 
61
 
 
62
#endif /* _KOTO_ALL_GROUP */