doc/: Initial work on an index.
[sod] / doc / sod.tex
1 %%% -*-latex-*-
2 %%%
3 %%% Description of the internal class structure and protocol
4 %%%
5 %%% (c) 2009 Straylight/Edgeware
6 %%%
7
8 %%%----- Licensing notice ---------------------------------------------------
9 %%%
10 %%% This file is part of the Simple Object Definition system.
11 %%%
12 %%% SOD is free software; you can redistribute it and/or modify
13 %%% it under the terms of the GNU General Public License as published by
14 %%% the Free Software Foundation; either version 2 of the License, or
15 %%% (at your option) any later version.
16 %%%
17 %%% SOD is distributed in the hope that it will be useful,
18 %%% but WITHOUT ANY WARRANTY; without even the implied warranty of
19 %%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 %%% GNU General Public License for more details.
21 %%%
22 %%% You should have received a copy of the GNU General Public License
23 %%% along with SOD; if not, write to the Free Software Foundation,
24 %%% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 \documentclass[noarticle, titlepage]{strayman}
27
28 \errorcontextlines=999
29
30 \usepackage[T1]{fontenc}
31 \usepackage[utf8]{inputenc}
32 \usepackage[palatino, helvetica, courier, maths=cmr]{mdwfonts}
33 \usepackage{tikz}
34 \usepackage{syntax}
35 \usepackage{sverb}
36 \usepackage{mdwtab}
37 \usepackage[mdwmargin]{mdwthm}
38 \usepackage{amssymb}
39 \usepackage{footnote}
40 \usepackage{at}
41 \usepackage{mdwref}
42
43 \usepackage{sod}
44
45 \makeindex
46
47 \title{A Sensible Object Design for C}
48 \author{Mark Wooding}
49
50 \begin{document}
51
52 \frontmatter
53 \maketitle
54
55 %%%--------------------------------------------------------------------------
56
57 \tableofcontents
58
59 \mainmatter
60
61 %%%--------------------------------------------------------------------------
62 \part{Tutorial} \label{p:tut}
63
64 \include{tutorial}
65
66 %%%--------------------------------------------------------------------------
67 \part{Reference} \label{p:ref}
68
69 \include{concepts}
70 \include{cmdline}
71 \include{syntax}
72 \include{runtime}
73 \include{structures}
74
75 %%%--------------------------------------------------------------------------
76 \part{Lisp interface} \label{p:lisp}
77
78 \include{lispintro}
79 %% package.lisp
80 %% sod.asd.in
81 %% sod-frontend.asd.in
82 %% auto.lisp.in
83
84 \include{misc}
85 %% utilities.lisp
86 %% pset-impl.lisp
87 %% pset-parse.lisp
88 %% pset-proto.lisp
89 %% optparse.lisp
90 %% frontend.lisp
91 %% final.lisp
92
93 \include{parsing}
94 %% package.lisp
95 %% floc-impl.lisp
96 %% floc-proto.lisp
97 %% streams-impl.lisp
98 %% streams-proto.lisp
99 %% scanner-context-impl.lisp
100 %% scanner-impl.lisp
101 %% scanner-proto.lisp
102 %% scanner-token-impl.lisp
103 %% scanner-charbuf-impl.lisp
104 %% parser-impl.lisp
105 %% parser-proto.lisp
106 %% parser-expr-impl.lisp
107 %% parser-expr-proto.lisp
108 %% lexer-impl.lisp
109 %% lexer-proto.lisp
110
111 \include{clang}
112 %% c-types-class-impl.lisp
113 %% c-types-impl.lisp
114 %% c-types-parse.lisp
115 %% c-types-proto.lisp
116 %% codegen-impl.lisp
117 %% codegen-proto.lisp
118 %% fragment-parse.lisp
119
120 \include{meta}
121 %% classes.lisp
122 %% class-utilities.lisp
123 %% class-make-impl.lisp
124 %% class-make-proto.lisp
125 %% class-finalize-impl.lisp
126 %% class-finalize-proto.lisp
127
128 \include{layout}
129 %% class-layout-impl.lisp
130 %% class-layout-proto.lisp
131 %% method-impl.lisp
132 %% method-proto.lisp
133 %% method-aggregate.lisp
134
135 \include{module}
136 %% module-impl.lisp
137 %% module-parse.lisp
138 %% module-proto.lisp
139 %% builtin.lisp
140
141 \include{output}
142 %% output-impl.lisp
143 %% output-proto.lisp
144 %% class-output.lisp
145 %% module-output.lisp
146
147 %%%--------------------------------------------------------------------------
148 \part{Appendices}
149 \appendix
150
151 \include{cutting-room-floor}
152
153 %%%--------------------------------------------------------------------------
154 \backmatter
155
156 \input{sod.ind}
157
158 %%%----- That's all, folks --------------------------------------------------
159 \end{document}
160
161 %%% Local variables:
162 %%% mode: LaTeX
163 %%% TeX-PDF-mode: t
164 %%% End: