~ubuntu-branches/ubuntu/trusty/lasso/trusty

1.2.2 by Frederic Peters
Import upstream version 2.3.5
1
/* $Id: subsref_create_response.h,v 1.0 2005/10/14 15:17:55 fpeters Exp $
1.1.5 by Michael Bienia
Import upstream version 2.1.1
2
 *
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
 *
5
 * Copyright (C) 2004-2007 Entr'ouvert
6
 * http://lasso.entrouvert.org
1.2.2 by Frederic Peters
Import upstream version 2.3.5
7
 *
1.1.5 by Michael Bienia
Import upstream version 2.1.1
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.
1.2.2 by Frederic Peters
Import upstream version 2.3.5
14
 *
1.1.5 by Michael Bienia
Import upstream version 2.1.1
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.
1.2.2 by Frederic Peters
Import upstream version 2.3.5
19
 *
1.1.5 by Michael Bienia
Import upstream version 2.1.1
20
 * You should have received a copy of the GNU General Public License
1.2.4 by Frederic Peters
Import upstream version 2.4.0
21
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
1.1.5 by Michael Bienia
Import upstream version 2.1.1
22
 */
23
24
#ifndef __LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE_H__
25
#define __LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE_H__
26
27
#ifdef __cplusplus
28
extern "C" {
29
#endif /* __cplusplus */
30
1.2.2 by Frederic Peters
Import upstream version 2.3.5
31
#include "../xml.h"
1.1.5 by Michael Bienia
Import upstream version 2.1.1
32
#include "subsref_data_response.h"
33
34
#define LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE \
35
	(lasso_idwsf2_subsref_create_response_get_type())
36
#define LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE(obj) \
37
	(G_TYPE_CHECK_INSTANCE_CAST((obj), \
38
		LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE, \
39
		LassoIdWsf2SubsRefCreateResponse))
40
#define LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE_CLASS(klass) \
41
	(G_TYPE_CHECK_CLASS_CAST((klass), \
42
		LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE, \
43
		LassoIdWsf2SubsRefCreateResponseClass))
44
#define LASSO_IS_IDWSF2_SUBSREF_CREATE_RESPONSE(obj) \
45
	(G_TYPE_CHECK_INSTANCE_TYPE((obj), \
46
		LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE))
47
#define LASSO_IS_IDWSF2_SUBSREF_CREATE_RESPONSE_CLASS(klass) \
48
	(G_TYPE_CHECK_CLASS_TYPE ((klass), \
49
		LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE))
50
#define LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE_GET_CLASS(o) \
51
	(G_TYPE_INSTANCE_GET_CLASS ((o), \
52
		LASSO_TYPE_IDWSF2_SUBSREF_CREATE_RESPONSE, \
1.2.2 by Frederic Peters
Import upstream version 2.3.5
53
		LassoIdWsf2SubsRefCreateResponseClass))
1.1.5 by Michael Bienia
Import upstream version 2.1.1
54
55
56
typedef struct _LassoIdWsf2SubsRefCreateResponse LassoIdWsf2SubsRefCreateResponse;
57
typedef struct _LassoIdWsf2SubsRefCreateResponseClass LassoIdWsf2SubsRefCreateResponseClass;
58
59
60
struct _LassoIdWsf2SubsRefCreateResponse {
61
	LassoIdWsf2SubsRefDataResponse parent;
62
63
	/*< public >*/
64
};
65
66
67
struct _LassoIdWsf2SubsRefCreateResponseClass {
68
	LassoIdWsf2SubsRefDataResponseClass parent;
69
};
70
71
LASSO_EXPORT GType lasso_idwsf2_subsref_create_response_get_type(void);
72
LASSO_EXPORT LassoIdWsf2SubsRefCreateResponse* lasso_idwsf2_subsref_create_response_new(void);
73
74
75
76
#ifdef __cplusplus
77
}
78
#endif /* __cplusplus */
79
80
#endif /* __LASSO_IDWSF2_SUBSREF_CREATE_RESPONSE_H__ */