~ubuntu-branches/ubuntu/hardy/lasso/hardy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef SWIGPHP4
%rename(Saml2Action) LassoSaml2Action;
#endif
typedef struct {
	char *content;
#ifndef SWIGPHP4
	%rename(namespace) Namespace;
#endif
	char *Namespace;
} LassoSaml2Action;
%extend LassoSaml2Action {


	/* Constructor, Destructor & Static Methods */
	LassoSaml2Action();
	~LassoSaml2Action();

	/* Method inherited from LassoNode */
	%newobject dump;
	char* dump();
}

%{


/* Constructors, destructors & static methods implementations */

#define new_LassoSaml2Action lasso_saml2_action_new
#define delete_LassoSaml2Action(self) lasso_node_destroy(LASSO_NODE(self))

/* Implementations of methods inherited from LassoNode */

#define LassoSaml2Action_dump(self) lasso_node_dump(LASSO_NODE(self))

%}