/*
 * Teletype.java:
 *
 * Currently an abstract class, that covers the output from the EDSAC
 * simulator and passes data through to the GUI.
 *
 * Changes:
 *   25/01/1999 - sgf22 - Created.
 */

abstract class Teletype {
  abstract Teletype();

  // Print a character to tape
  abstract void getNext(Character c);

  // FIXME: GUI interaction methods may be required.
}
