package ip;
// to run use
// ip.Main

import ip.gui.Globals;
import ip.gui.frames.TopFrame;

import java.applet.Applet;

/* To compile, under jdk 1.2,
   you will
   need to uncomment
   a line in graphics.dclap/Gr2PICT.java
   This is clearly labeled in the
   graphics.dclap/Gr2PICT.java
   file.
     - DL
 */

/**
 *  The main class for
 *  starting Kahindu Vision
 *  @author Douglas Lyon
 *  @version 1.9
 *  @parm args String[] is ignored.
 *  @return void
 *  @see ip.gui.TopFrame.main
 *  @exception OutOfMemoryError too many open frames
 *  Copyright 1998.
 *  Send e-mail to lyon@DocJava.com
 *  for licensing for commercial use.
 *
 *  This software is shareware
 *  for non-commercial use.
 *
 *  COMPILATION INSTRUCTIONS
 *     UNIX WINDOWS 95/98/NT:
 *       javac Main.java * /*.java
 *           "remove space^"
 *       java Main
 *     IDES:
 *       drag src folder to
 *       IDE project window and
 *       recompile. The target
 *       is 'Main'
 *
 */
public class Main extends Applet {
  /**
      @args - unprocessed
   */

  static String title[] =
      {Globals.title};

  public void init() {
    TopFrame.main(title);

  }

  public static void main(String args[]) {
    TopFrame.main(title);
  }
}