~ubuntu-branches/ubuntu/breezy/lasso/breezy

« back to all changes in this revision

Viewing changes to csharp/SamlSubjectStatementAbstract.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-16 02:16:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050916021649-lr5tuka6pfmmks44
Tags: 0.6.2-3ubuntu1
* debian/control: removed hardcoded php dependency, added php:Depends
  substvar
* debian/rules: added phpapiver, added substitution of php:Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------------
 
2
 * This file was automatically generated by SWIG (http://www.swig.org).
 
3
 * Version 1.3.24
 
4
 *
 
5
 * Do not make changes to this file unless you know what you are doing--modify
 
6
 * the SWIG interface file instead.
 
7
 * ----------------------------------------------------------------------------- */
 
8
 
 
9
namespace lasso {
 
10
 
 
11
using System;
 
12
 
 
13
public class SamlSubjectStatementAbstract : SamlStatementAbstract, IDisposable {
 
14
  internal SamlSubjectStatementAbstract(IntPtr cPtr, bool cMemoryOwn) {
 
15
    swigCMemOwn = cMemoryOwn;
 
16
    swigCPtr = cPtr;
 
17
  }
 
18
 
 
19
  protected static IntPtr getCPtr(SamlSubjectStatementAbstract obj) {
 
20
    return (obj == null) ? IntPtr.Zero : obj.swigCPtr;
 
21
  }
 
22
 
 
23
  protected SamlSubjectStatementAbstract() : this(IntPtr.Zero, false) {
 
24
  }
 
25
 
 
26
  public virtual void Dispose() {
 
27
  base.Dispose();
 
28
}
 
29
 
 
30
  public SamlSubject subject {
 
31
    set {
 
32
      lassoPINVOKE.set_SamlSubjectStatementAbstract_subject(swigCPtr, SamlSubject.getCPtr(value));
 
33
    } 
 
34
    get {
 
35
      IntPtr cPtr = lassoPINVOKE.get_SamlSubjectStatementAbstract_subject(swigCPtr);
 
36
      return (cPtr == IntPtr.Zero) ? null : new SamlSubject(cPtr, false);
 
37
    } 
 
38
  }
 
39
 
 
40
  public string dump() {
 
41
    return lassoPINVOKE.SamlSubjectStatementAbstract_dump(swigCPtr);
 
42
  }
 
43
 
 
44
}
 
45
 
 
46
}