blob: 9b9c887da6ac2c74ab68f749650761947e75394a (
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(Samlp2Extensions) LassoSamlp2Extensions;
#endif
typedef struct {
} LassoSamlp2Extensions;
%extend LassoSamlp2Extensions {
/* Constructor, Destructor & Static Methods */
LassoSamlp2Extensions();
~LassoSamlp2Extensions();
/* Method inherited from LassoNode */
%newobject dump;
char* dump();
}
%{
/* Constructors, destructors & static methods implementations */
#define new_LassoSamlp2Extensions lasso_samlp2_extensions_new
#define delete_LassoSamlp2Extensions(self) lasso_node_destroy(LASSO_NODE(self))
/* Implementations of methods inherited from LassoNode */
#define LassoSamlp2Extensions_dump(self) lasso_node_dump(LASSO_NODE(self))
%}
|