~ubuntu-branches/ubuntu/edgy/lasso/edgy

« back to all changes in this revision

Viewing changes to lasso/xml/disco_insert_entry.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-16 02:16:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050916021649-lr5tuka6pfmmks44
Tags: 0.6.2-3ubuntu1
* debian/control: removed hardcoded php dependency, added php:Depends
  substvar
* debian/rules: added phpapiver, added substitution of php:Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: disco_insert_entry.h,v 1.5 2005/04/22 09:21:54 nclapies Exp $ 
 
2
 *
 
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
4
 *
 
5
 * Copyright (C) 2004, 2005 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_DISCO_INSERT_ENTRY_H__
 
26
#define __LASSO_DISCO_INSERT_ENTRY_H__
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */ 
 
31
 
 
32
#include <lasso/xml/xml.h>
 
33
#include <lasso/xml/disco_resource_offering.h>
 
34
 
 
35
#define LASSO_TYPE_DISCO_INSERT_ENTRY (lasso_disco_insert_entry_get_type())
 
36
#define LASSO_DISCO_INSERT_ENTRY(obj) \
 
37
        (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_DISCO_INSERT_ENTRY, LassoDiscoInsertEntry))
 
38
#define LASSO_DISCO_INSERT_ENTRY_CLASS(klass) \
 
39
        (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_DISCO_INSERT_ENTRY, \
 
40
                                 LassoDiscoInsertEntryClass))
 
41
#define LASSO_IS_DISCO_INSERT_ENTRY(obj) \
 
42
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_DISCO_INSERT_ENTRY))
 
43
#define LASSO_IS_DISCO_INSERT_ENTRY_CLASS(klass) \
 
44
        (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_DISCO_INSERT_ENTRY))
 
45
#define LASSO_DISCO_INSERT_ENTRY_GET_CLASS(o) \
 
46
        (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_DISCO_INSERT_ENTRY, \
 
47
                                    LassoDiscoInsertEntryClass))
 
48
 
 
49
typedef struct _LassoDiscoInsertEntry LassoDiscoInsertEntry;
 
50
typedef struct _LassoDiscoInsertEntryClass LassoDiscoInsertEntryClass;
 
51
 
 
52
struct _LassoDiscoInsertEntry {
 
53
        LassoNode parent;
 
54
 
 
55
        LassoDiscoResourceOffering *ResourceOffering;
 
56
        GList *any;
 
57
};
 
58
 
 
59
struct _LassoDiscoInsertEntryClass {
 
60
        LassoNodeClass parent;
 
61
};
 
62
 
 
63
LASSO_EXPORT GType lasso_disco_insert_entry_get_type(void);
 
64
LASSO_EXPORT LassoDiscoInsertEntry* lasso_disco_insert_entry_new(
 
65
        LassoDiscoResourceOffering *resourceOffering);
 
66
 
 
67
#ifdef __cplusplus
 
68
}
 
69
#endif /* __cplusplus */
 
70
 
 
71
#endif /* __LASSO_DISCO_INSERT_ENTRY_H__ */