src/Pure/General/ROOT.ML
author wenzelm
Wed, 12 May 1999 16:50:56 +0200
changeset 6638 731b4aec2fd6
parent 6634 6f74e7aa5b4d
child 6644 123b215882ae
permissions -rw-r--r--
added url.ML;
wenzelm@5018
     1
(*  Title:      Pure/General/ROOT.ML
wenzelm@5018
     2
    ID:         $Id$
wenzelm@5018
     3
wenzelm@5018
     4
General tools.
wenzelm@5018
     5
*)
wenzelm@5018
     6
wenzelm@5018
     7
use "table.ML";
wenzelm@6134
     8
use "graph.ML";
wenzelm@5018
     9
use "object.ML";
wenzelm@5018
    10
use "seq.ML";
wenzelm@5018
    11
use "name_space.ML";
wenzelm@5018
    12
use "position.ML";
wenzelm@6634
    13
use "scan.ML";
wenzelm@6638
    14
use "source.ML";
wenzelm@6638
    15
use "symbol.ML";
wenzelm@5018
    16
use "path.ML";
wenzelm@6638
    17
use "url.ML";
wenzelm@5018
    18
use "file.ML";
wenzelm@6317
    19
use "buffer.ML";
wenzelm@5040
    20
use "history.ML";
wenzelm@6116
    21
use "pretty.ML";
wenzelm@5864
    22
wenzelm@5864
    23
structure PureGeneral =
wenzelm@5864
    24
struct
wenzelm@5864
    25
  structure Symtab = Symtab;
wenzelm@6136
    26
  structure Graph = Graph;
wenzelm@5864
    27
  structure Object = Object;
wenzelm@5864
    28
  structure Seq = Seq;
wenzelm@5864
    29
  structure NameSpace = NameSpace;
wenzelm@5864
    30
  structure Position = Position;
wenzelm@6634
    31
  structure Scan = Scan;
wenzelm@6638
    32
  structure Symbol = Symbol;
wenzelm@5864
    33
  structure Path = Path;
wenzelm@6638
    34
  structure Url = Url;
wenzelm@5864
    35
  structure File = File;
wenzelm@6317
    36
  structure Buffer = Buffer;
wenzelm@5864
    37
  structure History = History;
wenzelm@6116
    38
  structure Source = Source;
wenzelm@6116
    39
  structure Pretty = Pretty;
wenzelm@5864
    40
end;