src/Pure/General/ROOT.ML
author wenzelm
Tue, 11 May 1999 17:51:23 +0200
changeset 6634 6f74e7aa5b4d
parent 6317 128e592f5489
child 6638 731b4aec2fd6
permissions -rw-r--r--
moved scan.ML;

(*  Title:      Pure/General/ROOT.ML
    ID:         $Id$

General tools.
*)

use "table.ML";
use "graph.ML";
use "object.ML";
use "seq.ML";
use "name_space.ML";
use "position.ML";
use "scan.ML";
use "path.ML";
use "file.ML";
use "buffer.ML";
use "history.ML";
use "source.ML";
use "symbol.ML";
use "pretty.ML";

structure PureGeneral =
struct
  structure Symtab = Symtab;
  structure Graph = Graph;
  structure Object = Object;
  structure Seq = Seq;
  structure NameSpace = NameSpace;
  structure Position = Position;
  structure Scan = Scan;
  structure Path = Path;
  structure File = File;
  structure Buffer = Buffer;
  structure History = History;
  structure Source = Source;
  structure Symbol = Symbol;
  structure Pretty = Pretty;
end;