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

« back to all changes in this revision

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