Location: Metabolic Component Library @ 2ac29dd97e92 / CellML-source / CellMLTools / src / tools / CellMLLoader.java

Author:
Matthias K?nig <matthias.koenig@charite.de>
Date:
2013-05-17 20:14:36+02:00
Desc:
Further work on the HTML documentation.
Permanent Source URI:
https://models.cellml.org/w/matthiaskoenig/MetabolicComponentLibrary/rawfile/2ac29dd97e9204b8c5de02fa2ddf416afdd997e4/CellML-source/CellMLTools/src/tools/CellMLLoader.java

package tools;


import cellml_api.CellMLBootstrap;

public class CellMLLoader {
  private CellMLBootstrap bootstrap;
  
  public CellMLLoader(){
    System.loadLibrary("java_cellml");
    bootstrap =  cellml_bootstrap.CellMLBootstrap.createCellMLBootstrap();
  }
  
  public CellMLBootstrap getCellMLBootstrap(){
    return bootstrap;
  }
}