summaryrefslogtreecommitdiffstats
path: root/swig/saml-2.0/samlp2_status_detail.i
blob: 05e188476f3df27cecdbf3ebff95e82b3bc119b7 (plain)
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

#ifndef SWIGPHP4
%rename(Samlp2StatusDetail) LassoSamlp2StatusDetail;
#endif
typedef struct {
} LassoSamlp2StatusDetail;
%extend LassoSamlp2StatusDetail {


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

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

%{


/* Constructors, destructors & static methods implementations */

#define new_LassoSamlp2StatusDetail lasso_samlp2_status_detail_new
#define delete_LassoSamlp2StatusDetail(self) lasso_node_destroy(LASSO_NODE(self))

/* Implementations of methods inherited from LassoNode */

#define LassoSamlp2StatusDetail_dump(self) lasso_node_dump(LASSO_NODE(self))

%}