Update bindings to latest upstream.
[ldk-java] / ts / structs / Init.ts
1
2             
3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
5
6
7
8             export default class Init extends CommonBase {
9                 constructor(_dummy: object, ptr: number) {
10                     super(ptr);
11                 }
12
13                 
14                 protected finalize() {
15                     super.finalize();
16
17                     if (this.ptr != 0) {
18                         bindings.Init_free(this.ptr);
19                     }
20                 }
21         public InitFeatures get_features() {
22                 number ret = bindings.Init_get_features(this.ptr);
23                 const ret_hu_conv: InitFeatures = new InitFeatures(null, ret);
24                 ret_hu_conv.ptrs_to.add(this);
25                 return ret_hu_conv;
26         }
27
28         public void set_features(InitFeatures val) {
29                 bindings.Init_set_features(this.ptr, val == null ? 0 : val.ptr & ~1);
30                 this.ptrs_to.add(val);
31         }
32
33         public static Init constructor_new(InitFeatures features_arg) {
34                 number ret = bindings.Init_new(features_arg == null ? 0 : features_arg.ptr & ~1);
35                 const ret_hu_conv: Init = new Init(null, ret);
36                 ret_hu_conv.ptrs_to.add(ret_hu_conv);
37                 ret_hu_conv.ptrs_to.add(features_arg);
38                 return ret_hu_conv;
39         }
40
41         public Init clone() {
42                 number ret = bindings.Init_clone(this.ptr);
43                 const ret_hu_conv: Init = new Init(null, ret);
44                 ret_hu_conv.ptrs_to.add(this);
45                 return ret_hu_conv;
46         }
47
48         public Uint8Array write() {
49                 Uint8Array ret = bindings.Init_write(this.ptr);
50                 return ret;
51         }
52
53         public static Result_InitDecodeErrorZ constructor_read(Uint8Array ser) {
54                 number ret = bindings.Init_read(ser);
55                 Result_InitDecodeErrorZ ret_hu_conv = Result_InitDecodeErrorZ.constr_from_ptr(ret);
56                 return ret_hu_conv;
57         }
58
59 }