mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
24 lines
326 B
Java
24 lines
326 B
Java
import org.openbabel.*
|
|
|
|
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();
|
|
}
|
|
}
|