[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / FixedPenaltyScorer.cs
diff --git a/c_sharp/src/org/ldk/structs/FixedPenaltyScorer.cs b/c_sharp/src/org/ldk/structs/FixedPenaltyScorer.cs
new file mode 100644 (file)
index 0000000..1f28b22
--- /dev/null
@@ -0,0 +1,83 @@
+using org.ldk.impl;
+using org.ldk.enums;
+using org.ldk.util;
+using System;
+
+namespace org { namespace ldk { namespace structs {
+
+
+/**
+ * [`Score`] implementation that uses a fixed penalty.
+ */
+public class FixedPenaltyScorer : CommonBase {
+       internal FixedPenaltyScorer(object _dummy, long ptr) : base(ptr) { }
+       ~FixedPenaltyScorer() {
+               if (ptr != 0) { bindings.FixedPenaltyScorer_free(ptr); }
+       }
+
+       internal long clone_ptr() {
+               long ret = bindings.FixedPenaltyScorer_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the FixedPenaltyScorer
+        */
+       public FixedPenaltyScorer clone() {
+               long ret = bindings.FixedPenaltyScorer_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.FixedPenaltyScorer ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.FixedPenaltyScorer(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Creates a new scorer using `penalty_msat`.
+        */
+       public static FixedPenaltyScorer with_penalty(long penalty_msat) {
+               long ret = bindings.FixedPenaltyScorer_with_penalty(penalty_msat);
+               GC.KeepAlive(penalty_msat);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.FixedPenaltyScorer ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.FixedPenaltyScorer(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Constructs a new Score which calls the relevant methods on this_arg.
+        * This copies the `inner` pointer in this_arg and thus the returned Score must be freed before this_arg is
+        */
+       public Score as_Score() {
+               long ret = bindings.FixedPenaltyScorer_as_Score(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Score ret_hu_conv = new Score(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Serialize the FixedPenaltyScorer object into a byte array which can be read by FixedPenaltyScorer_read
+        */
+       public byte[] write() {
+               byte[] ret = bindings.FixedPenaltyScorer_write(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Read a FixedPenaltyScorer from a byte array, created by FixedPenaltyScorer_write
+        */
+       public static Result_FixedPenaltyScorerDecodeErrorZ read(byte[] ser, long arg) {
+               long ret = bindings.FixedPenaltyScorer_read(ser, arg);
+               GC.KeepAlive(ser);
+               GC.KeepAlive(arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               Result_FixedPenaltyScorerDecodeErrorZ ret_hu_conv = Result_FixedPenaltyScorerDecodeErrorZ.constr_from_ptr(ret);
+               return ret_hu_conv;
+       }
+
+}
+} } }