src/Pure/General/ROOT.ML
author wenzelm
Mon, 18 Jan 1999 21:12:42 +0100
changeset 6136 166b3353aad5
parent 6134 ec6092b0599d
child 6180 99f107fd478f
permissions -rw-r--r--
structure Graph = Graph;

(*  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 "path.ML";
use "file.ML";
use "history.ML";
use "scan.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 Path = Path;
  structure File = File;
  structure History = History;
  structure Scan = Scan;
  structure Source = Source;
  structure Symbol = Symbol;
  structure Pretty = Pretty;
end;