doc/...: Fix `\textbar' properly, and use plain `|'.
[sod] / doc / sod.tex
CommitLineData
1f7d590d
MW
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
b18dfd74 26\documentclass[noarticle, titlepage]{strayman}
1f1d88f5 27
1f7d590d
MW
28\errorcontextlines=999
29
1f1d88f5
MW
30\usepackage[T1]{fontenc}
31\usepackage[utf8]{inputenc}
32\usepackage[palatino, helvetica, courier, maths=cmr]{mdwfonts}
b59108e2
MW
33\usepackage{makeidx}
34\usepackage
0a262580 35 [columns=2, justific=raggedright,
b59108e2
MW
36 totoc=true, font=small]
37 {idxlayout}
fca95fc1 38\usepackage{tikz}
f1aa19a8
MW
39\usetikzlibrary{calc}
40\usetikzlibrary{positioning}
1f1d88f5
MW
41\usepackage{syntax}
42\usepackage{sverb}
3f5345bc 43\usepackage{longtable, mdwtab}
5134f04b 44\usepackage[mdwmargin, within=section]{mdwthm}
fca95fc1 45\usepackage{amssymb}
dea4d055 46\usepackage{footnote}
1f1d88f5
MW
47\usepackage{at}
48\usepackage{mdwref}
49
1f7d590d
MW
50\usepackage{sod}
51
ddfe4265 52\makeindex
2bc73f78 53\let\indexstheadcase\relax
9cd5cf15 54\bibliographystyle{mdwalpha}
ddfe4265 55
bfb791e9
MW
56\ifx\pkgversion\xxundefined
57 \immediate\typeout{WARNING: \string\pkgversion\ not defined}
58 \def\pkgversion{UNSET}
59\fi
60
1f1d88f5
MW
61\title{A Sensible Object Design for C}
62\author{Mark Wooding}
87837656 63\date{\today; version \pkgversion}
1f1d88f5 64
31d3ef76
MW
65%%\includeonly{...}
66
1f1d88f5
MW
67\begin{document}
68
43cb10f9 69\frontmatter
1f1d88f5
MW
70\maketitle
71
1f1d88f5 72%%%--------------------------------------------------------------------------
1f1d88f5 73
1f7d590d 74\tableofcontents
1f1d88f5 75
1f7d590d 76\mainmatter
1f1d88f5 77
e655a9fd
MW
78\include{intro}
79
1f1d88f5 80%%%--------------------------------------------------------------------------
7420cef2 81\part{Tutorial\label{p:tut}}
1f1d88f5 82
1f7d590d 83\include{tutorial}
1f1d88f5
MW
84
85%%%--------------------------------------------------------------------------
7420cef2 86\part{Reference\label{p:ref}}
1f1d88f5 87
7292d6e1 88\include{refintro}
1f7d590d
MW
89\include{concepts}
90\include{cmdline}
91\include{syntax}
1f7d590d 92\include{runtime}
45e10a4f 93\include{structures}
fca95fc1
MW
94
95%%%--------------------------------------------------------------------------
7420cef2 96\part{Lisp interface\label{p:lisp}}
1f7d590d
MW
97
98\include{lispintro}
99%% package.lisp
100%% sod.asd.in
101%% sod-frontend.asd.in
102%% auto.lisp.in
103
104\include{misc}
5ea92e79 105%% utilities.lisp
1f7d590d
MW
106%% pset-impl.lisp
107%% pset-parse.lisp
108%% pset-proto.lisp
1f7d590d
MW
109%% optparse.lisp
110%% frontend.lisp
111%% final.lisp
112
113\include{parsing}
114%% package.lisp
115%% floc-impl.lisp
116%% floc-proto.lisp
117%% streams-impl.lisp
118%% streams-proto.lisp
119%% scanner-context-impl.lisp
120%% scanner-impl.lisp
121%% scanner-proto.lisp
122%% scanner-token-impl.lisp
123%% scanner-charbuf-impl.lisp
124%% parser-impl.lisp
125%% parser-proto.lisp
126%% parser-expr-impl.lisp
127%% parser-expr-proto.lisp
5ea92e79
MW
128%% lexer-impl.lisp
129%% lexer-proto.lisp
1f7d590d
MW
130
131\include{clang}
132%% c-types-class-impl.lisp
133%% c-types-impl.lisp
134%% c-types-parse.lisp
135%% c-types-proto.lisp
136%% codegen-impl.lisp
137%% codegen-proto.lisp
138%% fragment-parse.lisp
139
140\include{meta}
141%% classes.lisp
142%% class-utilities.lisp
143%% class-make-impl.lisp
144%% class-make-proto.lisp
145%% class-finalize-impl.lisp
146%% class-finalize-proto.lisp
147
148\include{layout}
149%% class-layout-impl.lisp
150%% class-layout-proto.lisp
151%% method-impl.lisp
152%% method-proto.lisp
153%% method-aggregate.lisp
154
155\include{module}
156%% module-impl.lisp
157%% module-parse.lisp
158%% module-proto.lisp
159%% builtin.lisp
160
161\include{output}
162%% output-impl.lisp
163%% output-proto.lisp
164%% class-output.lisp
165%% module-output.lisp
fca95fc1
MW
166
167%%%--------------------------------------------------------------------------
1f7d590d
MW
168\part{Appendices}
169\appendix
1f1d88f5 170
1f7d590d 171\include{cutting-room-floor}
1f1d88f5 172
ddfe4265
MW
173%%%--------------------------------------------------------------------------
174\backmatter
175
9cd5cf15
MW
176\bibliography{%
177 isostd,%
178 sigplan1990}
b59108e2 179\printindex
ddfe4265 180
1f7d590d 181%%%----- That's all, folks --------------------------------------------------
1f1d88f5 182\end{document}
1f7d590d 183
1f1d88f5
MW
184%%% Local variables:
185%%% mode: LaTeX
186%%% TeX-PDF-mode: t
187%%% End: