~ubuntu-branches/ubuntu/gutsy/lasso/gutsy-security

« back to all changes in this revision

Viewing changes to swig/saml-2.0/samlp2_extensions.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(Samlp2Extensions) LassoSamlp2Extensions;
 
4
#endif
 
5
typedef struct {
 
6
} LassoSamlp2Extensions;
 
7
%extend LassoSamlp2Extensions {
 
8
 
 
9
 
 
10
        /* Constructor, Destructor & Static Methods */
 
11
        LassoSamlp2Extensions();
 
12
        ~LassoSamlp2Extensions();
 
13
 
 
14
        /* Method inherited from LassoNode */
 
15
        %newobject dump;
 
16
        char* dump();
 
17
}
 
18
 
 
19
%{
 
20
 
 
21
 
 
22
/* Constructors, destructors & static methods implementations */
 
23
 
 
24
#define new_LassoSamlp2Extensions lasso_samlp2_extensions_new
 
25
#define delete_LassoSamlp2Extensions(self) lasso_node_destroy(LASSO_NODE(self))
 
26
 
 
27
/* Implementations of methods inherited from LassoNode */
 
28
 
 
29
#define LassoSamlp2Extensions_dump(self) lasso_node_dump(LASSO_NODE(self))
 
30
 
 
31
%}
 
32