* scripts/java/OBTest.java: Bring back test program.

* scripts/openbabel-java.i, scripts/openbabel-perl.i,
        scripts/openbabel-ruby.i: Fix script bindings. Now compile
        cleanly. Perl still needs work to pass tests.

        * include/openbabel/math/spacegroup.h, include/openbabel/plugin.h:
        Minor updates for SWIG compatibility.
This commit is contained in:
Geoffrey Hutchison
2008-05-16 21:07:13 +00:00
parent 6d97fbc5bf
commit 889fba2d20
10 changed files with 83 additions and 12 deletions

21
scripts/java/OBTest.java Normal file
View File

@@ -0,0 +1,21 @@
public class OBTest
{
public OBTest()
{
System.loadLibrary("openbabel");
}
public void run()
{
OBConversion c = new OBConversion();
}
public static void main(String[] args)
{
System.out.println("Running OBTest...");
OBTest test = new OBTest();
test.run();
}
}