Provide xslt translation domain for install link text
[yelp.git] / libyelp / yelp-magic-decompressor.h
blob15c09bbdd16ef71d8102a78faeb275cd015d010d
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * Copyright (C) 2009 Red Hat, Inc.
4 * Copyright (C) 2009 Shaun McCance <shaunm@gnome.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
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.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Author: Shaun McCance <shaunm@gnome.org>
24 #ifndef __YELP_MAGIC_DECOMPRESSOR_H__
25 #define __YELP_MAGIC_DECOMPRESSOR_H__
27 #include <gio/gio.h>
29 G_BEGIN_DECLS
31 #define YELP_TYPE_MAGIC_DECOMPRESSOR (yelp_magic_decompressor_get_type ())
32 #define YELP_MAGIC_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressor))
33 #define YELP_MAGIC_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressorClass))
34 #define YELP_IS_MAGIC_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), YELP_TYPE_MAGIC_DECOMPRESSOR))
35 #define YELP_IS_MAGIC_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), YELP_TYPE_MAGIC_DECOMPRESSOR))
36 #define YELP_MAGIC_DECOMPRESSOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressorClass))
38 typedef struct _YelpMagicDecompressor YelpMagicDecompressor;
39 typedef struct _YelpMagicDecompressorClass YelpMagicDecompressorClass;
41 struct _YelpMagicDecompressorClass
43 GObjectClass parent_class;
46 GType yelp_magic_decompressor_get_type (void);
48 YelpMagicDecompressor *yelp_magic_decompressor_new (void);
50 G_END_DECLS
52 #endif /* __YELP_MAGIC_DECOMPRESSOR_H__ */