summaryrefslogtreecommitdiffstats
path: root/swig/saml-2.0/saml2_attribute_statement.i
blob: 0eaa3eab23d2dd6530551d0581f945c282d48c4f (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

#ifndef SWIGPHP4
%rename(Saml2AttributeStatement) LassoSaml2AttributeStatement;
#endif
typedef struct {
} LassoSaml2AttributeStatement;
%extend LassoSaml2AttributeStatement {

	/* inherited from Saml2StatementAbstract */

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

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

%{


/* Constructors, destructors & static methods implementations */

#define new_LassoSaml2AttributeStatement lasso_saml2_attribute_statement_new
#define delete_LassoSaml2AttributeStatement(self) lasso_node_destroy(LASSO_NODE(self))

/* Implementations of methods inherited from LassoNode */

#define LassoSaml2AttributeStatement_dump(self) lasso_node_dump(LASSO_NODE(self))

%}