~ubuntu-branches/ubuntu/breezy/lasso/breezy

« back to all changes in this revision

Viewing changes to lasso/xml/disco_resource_offering.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_resource_offering.h,v 1.7 2005/03/10 08:13:36 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_RESOURCE_OFFERING_H__
 
26
#define __LASSO_DISCO_RESOURCE_OFFERING_H__
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */ 
 
31
 
 
32
#include <lasso/xml/xml.h>
 
33
#include <lasso/xml/disco_resource_id.h>
 
34
#include <lasso/xml/disco_encrypted_resource_id.h>
 
35
#include <lasso/xml/disco_service_instance.h>
 
36
#include <lasso/xml/disco_options.h>
 
37
 
 
38
#define LASSO_TYPE_DISCO_RESOURCE_OFFERING (lasso_disco_resource_offering_get_type())
 
39
#define LASSO_DISCO_RESOURCE_OFFERING(obj) \
 
40
        (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_DISCO_RESOURCE_OFFERING, \
 
41
                                    LassoDiscoResourceOffering))
 
42
#define LASSO_DISCO_RESOURCE_OFFERING_CLASS(klass) \
 
43
        (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_DISCO_RESOURCE_OFFERING, \
 
44
                                 LassoDiscoResourceOfferingClass))
 
45
#define LASSO_IS_DISCO_RESOURCE_OFFERING(obj) \
 
46
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_DISCO_RESOURCE_OFFERING))
 
47
#define LASSO_IS_DISCO_RESOURCE_OFFERING_CLASS(klass) \
 
48
        (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_DISCO_RESOURCE_OFFERING))
 
49
#define LASSO_DISCO_RESOURCE_OFFERING_GET_CLASS(o) \
 
50
        (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_DISCO_RESOURCE_OFFERING, \
 
51
                                    LassoDiscoResourceOfferingClass)) 
 
52
 
 
53
typedef struct _LassoDiscoResourceOffering LassoDiscoResourceOffering;
 
54
typedef struct _LassoDiscoResourceOfferingClass LassoDiscoResourceOfferingClass;
 
55
 
 
56
struct _LassoDiscoResourceOffering {
 
57
        LassoNode parent;
 
58
 
 
59
        /* elements */
 
60
        LassoDiscoResourceID *ResourceID;
 
61
        LassoDiscoEncryptedResourceID *EncryptedResourceID;
 
62
        LassoDiscoServiceInstance *ServiceInstance;
 
63
 
 
64
        /*
 
65
         * If the Options element is present, but it is empty, it means that the service instance
 
66
         * explicitly advertises that none of the options are available.
 
67
        */
 
68
        LassoDiscoOptions *Options;
 
69
        gchar *Abstract;
 
70
 
 
71
        /* attributes */
 
72
        gchar *entryID;
 
73
};
 
74
 
 
75
struct _LassoDiscoResourceOfferingClass {
 
76
        LassoNodeClass parent;
 
77
};
 
78
 
 
79
LASSO_EXPORT GType lasso_disco_resource_offering_get_type(void);
 
80
 
 
81
LASSO_EXPORT LassoDiscoResourceOffering* lasso_disco_resource_offering_new(
 
82
        LassoDiscoServiceInstance *serviceInstance);
 
83
 
 
84
#ifdef __cplusplus
 
85
}
 
86
#endif /* __cplusplus */
 
87
 
 
88
#endif /* __LASSO_DISCO_RESOURCE_OFFERING_H__ */