Skip to content

Commit

Permalink
Missing JCC wrapper templating.
Browse files Browse the repository at this point in the history
  • Loading branch information
petrushy committed Oct 19, 2024
1 parent 3b2233b commit ee531a2
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
package org.orekit.estimation.measurements.filtering;

public class PythonHatchFilter extends HatchFilter {

/** Part of JCC Python interface to object */
protected long pythonObject;

/** Part of JCC Python interface to object */
public void pythonExtension(long pythonObject) {
this.pythonObject = pythonObject;
}

/** Part of JCC Python interface to object */
public long pythonExtension() {
return this.pythonObject;
}

/** Part of JCC Python interface to object */
public void finalize() throws Throwable {
pythonDecRef();
}

/** Part of JCC Python interface to object */
public native void pythonDecRef();

/**
* Constructor for the Abstract Hatch Filter.
* <p>
Expand Down

0 comments on commit ee531a2

Please sign in to comment.