blob: 05919ac97b98942b6d002719bd1d0d9c166f137c (
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
33
34
|
#ifndef SWIGPHP4
%rename(Saml2BaseIDAbstract) LassoSaml2BaseIDAbstract;
#endif
typedef struct {
char *NameQualifier;
char *SPNameQualifier;
} LassoSaml2BaseIDAbstract;
%extend LassoSaml2BaseIDAbstract {
/* Constructor, Destructor & Static Methods */
LassoSaml2BaseIDAbstract();
~LassoSaml2BaseIDAbstract();
/* Method inherited from LassoNode */
%newobject dump;
char* dump();
}
%{
/* Constructors, destructors & static methods implementations */
#define new_LassoSaml2BaseIDAbstract lasso_saml2_base_idabstract_new
#define delete_LassoSaml2BaseIDAbstract(self) lasso_node_destroy(LASSO_NODE(self))
/* Implementations of methods inherited from LassoNode */
#define LassoSaml2BaseIDAbstract_dump(self) lasso_node_dump(LASSO_NODE(self))
%}
|