~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-updates

« back to all changes in this revision

Viewing changes to lasso/xml/id-wsf-2.0/util_extension.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-11-01 20:01:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071101200120-9ruoui67n24xyz9c
Tags: 2.1.1-2ubuntu1
* Merge from debian unstable (LP: #134095), remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
  + configure{,.ac}:
    - Add missing quotes around the value for PHP[45]_LIBS.
* Fix two lintian warnings:
  + debian/control:
    - liblasso3-dev: Replace ${Source-Version} with ${binary:Version}
  + debian/rules:
    - Don't ignore a make clean error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: util_extension.h,v 1.0 2005/10/14 15:17:55 fpeters Exp $ 
 
2
 *
 
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
4
 *
 
5
 * Copyright (C) 2004-2007 Entr'ouvert
 
6
 * http://lasso.entrouvert.org
 
7
 * 
 
8
 * Authors: See AUTHORS file in top-level directory.
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
23
 */
 
24
 
 
25
#ifndef __LASSO_IDWSF2_UTIL_EXTENSION_H__
 
26
#define __LASSO_IDWSF2_UTIL_EXTENSION_H__
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */
 
31
 
 
32
#include <lasso/xml/xml.h>
 
33
 
 
34
#define LASSO_TYPE_IDWSF2_UTIL_EXTENSION (lasso_idwsf2_util_extension_get_type())
 
35
#define LASSO_IDWSF2_UTIL_EXTENSION(obj) \
 
36
        (G_TYPE_CHECK_INSTANCE_CAST((obj), \
 
37
                LASSO_TYPE_IDWSF2_UTIL_EXTENSION, \
 
38
                LassoIdWsf2Utilextension))
 
39
#define LASSO_IDWSF2_UTIL_EXTENSION_CLASS(klass) \
 
40
        (G_TYPE_CHECK_CLASS_CAST((klass), \
 
41
                LASSO_TYPE_IDWSF2_UTIL_EXTENSION, \
 
42
                LassoIdWsf2UtilextensionClass))
 
43
#define LASSO_IS_IDWSF2_UTIL_EXTENSION(obj) \
 
44
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
 
45
                LASSO_TYPE_IDWSF2_UTIL_EXTENSION))
 
46
#define LASSO_IS_IDWSF2_UTIL_EXTENSION_CLASS(klass) \
 
47
        (G_TYPE_CHECK_CLASS_TYPE ((klass), \
 
48
                LASSO_TYPE_IDWSF2_UTIL_EXTENSION))
 
49
#define LASSO_IDWSF2_UTIL_EXTENSION_GET_CLASS(o) \
 
50
        (G_TYPE_INSTANCE_GET_CLASS ((o), \
 
51
                LASSO_TYPE_IDWSF2_UTIL_EXTENSION, \
 
52
                LassoIdWsf2UtilextensionClass)) 
 
53
 
 
54
 
 
55
typedef struct _LassoIdWsf2Utilextension LassoIdWsf2Utilextension;
 
56
typedef struct _LassoIdWsf2UtilextensionClass LassoIdWsf2UtilextensionClass;
 
57
 
 
58
 
 
59
struct _LassoIdWsf2Utilextension {
 
60
        LassoNode parent;
 
61
 
 
62
        /*< public >*/
 
63
};
 
64
 
 
65
 
 
66
struct _LassoIdWsf2UtilextensionClass {
 
67
        LassoNodeClass parent;
 
68
};
 
69
 
 
70
LASSO_EXPORT GType lasso_idwsf2_util_extension_get_type(void);
 
71
LASSO_EXPORT LassoIdWsf2Utilextension* lasso_idwsf2_util_extension_new(void);
 
72
 
 
73
 
 
74
 
 
75
#ifdef __cplusplus
 
76
}
 
77
#endif /* __cplusplus */
 
78
 
 
79
#endif /* __LASSO_IDWSF2_UTIL_EXTENSION_H__ */