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;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5018
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/General/ROOT.ML
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     3
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     4
General tools.
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     5
*)
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     6
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     7
use "table.ML";
6134
ec6092b0599d added General/graph.ML: generic direct graphs;
wenzelm
parents: 6116
diff changeset
     8
use "graph.ML";
5018
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
     9
use "object.ML";
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
    10
use "seq.ML";
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
    11
use "name_space.ML";
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
    12
use "position.ML";
6634
6f74e7aa5b4d moved scan.ML;
wenzelm
parents: 6317
diff changeset
    13
use "scan.ML";
5018
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
    14
use "path.ML";
ce8e87fad843 General tools.
wenzelm
parents:
diff changeset
    15
use "file.ML";
6317
128e592f5489 added Buffer;
wenzelm
parents: 6222
diff changeset
    16
use "buffer.ML";
5040
78abd4c4802a added General/history.ML;
wenzelm
parents: 5018
diff changeset
    17
use "history.ML";
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    18
use "source.ML";
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    19
use "symbol.ML";
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    20
use "pretty.ML";
5864
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    21
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    22
structure PureGeneral =
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    23
struct
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    24
  structure Symtab = Symtab;
6136
166b3353aad5 structure Graph = Graph;
wenzelm
parents: 6134
diff changeset
    25
  structure Graph = Graph;
5864
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    26
  structure Object = Object;
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    27
  structure Seq = Seq;
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    28
  structure NameSpace = NameSpace;
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    29
  structure Position = Position;
6634
6f74e7aa5b4d moved scan.ML;
wenzelm
parents: 6317
diff changeset
    30
  structure Scan = Scan;
5864
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    31
  structure Path = Path;
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    32
  structure File = File;
6317
128e592f5489 added Buffer;
wenzelm
parents: 6222
diff changeset
    33
  structure Buffer = Buffer;
5864
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    34
  structure History = History;
6116
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    35
  structure Source = Source;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    36
  structure Symbol = Symbol;
8ba2f25610f7 files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents: 5864
diff changeset
    37
  structure Pretty = Pretty;
5864
30b6a3251813 prefixed op;
wenzelm
parents: 5040
diff changeset
    38
end;