~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-updates

« back to all changes in this revision

Viewing changes to swig/saml-2.0/saml2_action.i

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 10:01:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711100132-e50ymjc54bsizza6
Tags: 0.6.5-2ubuntu1
* Synchronize with Debian unstable.
* Convert to updated Python policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef SWIGPHP4
 
3
%rename(Saml2Action) LassoSaml2Action;
 
4
#endif
 
5
typedef struct {
 
6
        char *content;
 
7
        char *Namespace;
 
8
} LassoSaml2Action;
 
9
%extend LassoSaml2Action {
 
10
 
 
11
 
 
12
        /* Constructor, Destructor & Static Methods */
 
13
        LassoSaml2Action();
 
14
        ~LassoSaml2Action();
 
15
 
 
16
        /* Method inherited from LassoNode */
 
17
        %newobject dump;
 
18
        char* dump();
 
19
}
 
20
 
 
21
%{
 
22
 
 
23
 
 
24
/* Constructors, destructors & static methods implementations */
 
25
 
 
26
#define new_LassoSaml2Action lasso_saml2_action_new
 
27
#define delete_LassoSaml2Action(self) lasso_node_destroy(LASSO_NODE(self))
 
28
 
 
29
/* Implementations of methods inherited from LassoNode */
 
30
 
 
31
#define LassoSaml2Action_dump(self) lasso_node_dump(LASSO_NODE(self))
 
32
 
 
33
%}
 
34