/* 
  FILE: JLinkLoader.java

23-Aug-05  K-03-31  JCN  $$1  Submitted.

*/
package com.ptc.jlink_loader;

/** 
 * This class statically loads the asynchronous J-Link native library.
 * Its separated from J-Link servlet implementation on purpose so that
 * Java does not attempt to load the library each time the servlet is run.
 * This class should be placed in the shared classpath for the servlet 
 * container.
 */
public class JLinkLoader
{
    static
    {
	System.out.println ("Loading library....");
	System.loadLibrary ("pfcasyncmt");
	System.out.println ("Done loading library.");
    }
}
