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

« back to all changes in this revision

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