~ubuntu-branches/ubuntu/karmic/lasso/karmic

« back to all changes in this revision

Viewing changes to lasso/xml/id-wsf-2.0/ps_remove_from_collection_request.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: ps_remove_from_collection_request.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_PS_REMOVE_FROM_COLLECTION_REQUEST_H__
 
26
#define __LASSO_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST_H__
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */
 
31
 
 
32
#include <lasso/xml/xml.h>
 
33
#include "subs_subscription.h"
 
34
#include "ps_request_abstract.h"
 
35
 
 
36
#define LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST \
 
37
        (lasso_idwsf2_ps_remove_from_collection_request_get_type())
 
38
#define LASSO_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST(obj) \
 
39
        (G_TYPE_CHECK_INSTANCE_CAST((obj), \
 
40
                LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST, \
 
41
                LassoIdWsf2PsRemoveFromCollectionRequest))
 
42
#define LASSO_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST_CLASS(klass) \
 
43
        (G_TYPE_CHECK_CLASS_CAST((klass), \
 
44
                LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST, \
 
45
                LassoIdWsf2PsRemoveFromCollectionRequestClass))
 
46
#define LASSO_IS_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST(obj) \
 
47
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
 
48
                LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST))
 
49
#define LASSO_IS_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST_CLASS(klass) \
 
50
        (G_TYPE_CHECK_CLASS_TYPE ((klass), \
 
51
                LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST))
 
52
#define LASSO_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST_GET_CLASS(o) \
 
53
        (G_TYPE_INSTANCE_GET_CLASS ((o), \
 
54
                LASSO_TYPE_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST, \
 
55
                LassoIdWsf2PsRemoveFromCollectionRequestClass)) 
 
56
 
 
57
 
 
58
typedef struct _LassoIdWsf2PsRemoveFromCollectionRequest \
 
59
        LassoIdWsf2PsRemoveFromCollectionRequest;
 
60
typedef struct _LassoIdWsf2PsRemoveFromCollectionRequestClass \
 
61
        LassoIdWsf2PsRemoveFromCollectionRequestClass;
 
62
 
 
63
 
 
64
struct _LassoIdWsf2PsRemoveFromCollectionRequest {
 
65
        LassoIdWsf2PsRequestAbstract parent;
 
66
 
 
67
        /*< public >*/
 
68
        /* elements */
 
69
        /* XXX */ void *TargetObjectID;
 
70
        GList *ObjectID;
 
71
        /* XXX */ void *Subscription;
 
72
};
 
73
 
 
74
 
 
75
struct _LassoIdWsf2PsRemoveFromCollectionRequestClass {
 
76
        LassoIdWsf2PsRequestAbstractClass parent;
 
77
};
 
78
 
 
79
LASSO_EXPORT GType lasso_idwsf2_ps_remove_from_collection_request_get_type(void);
 
80
LASSO_EXPORT LassoIdWsf2PsRemoveFromCollectionRequest* lasso_idwsf2_ps_remove_from_collection_request_new(void);
 
81
 
 
82
 
 
83
 
 
84
#ifdef __cplusplus
 
85
}
 
86
#endif /* __cplusplus */
 
87
 
 
88
#endif /* __LASSO_IDWSF2_PS_REMOVE_FROM_COLLECTION_REQUEST_H__ */