doc/stdmeth.tex: A TikZ diagram of the standard method combination.
[sod] / doc / sod.tex
... / ...
CommitLineData
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{makeidx}
34\usepackage
35 [columns=2, itemlayout=singlepar, justific=raggedright,
36 totoc=true, font=small]
37 {idxlayout}
38\usepackage{tikz}
39\usepackage{syntax}
40\usepackage{sverb}
41\usepackage{mdwtab}
42\usepackage[mdwmargin]{mdwthm}
43\usepackage{amssymb}
44\usepackage{footnote}
45\usepackage{at}
46\usepackage{mdwref}
47
48\usepackage{sod}
49
50\makeindex
51
52\title{A Sensible Object Design for C}
53\author{Mark Wooding}
54
55\begin{document}
56
57\frontmatter
58\maketitle
59
60%%%--------------------------------------------------------------------------
61
62\tableofcontents
63
64\mainmatter
65
66%%%--------------------------------------------------------------------------
67\part{Tutorial} \label{p:tut}
68
69\include{tutorial}
70
71%%%--------------------------------------------------------------------------
72\part{Reference} \label{p:ref}
73
74\include{concepts}
75\include{cmdline}
76\include{syntax}
77\include{runtime}
78\include{structures}
79
80%%%--------------------------------------------------------------------------
81\part{Lisp interface} \label{p:lisp}
82
83\include{lispintro}
84%% package.lisp
85%% sod.asd.in
86%% sod-frontend.asd.in
87%% auto.lisp.in
88
89\include{misc}
90%% utilities.lisp
91%% pset-impl.lisp
92%% pset-parse.lisp
93%% pset-proto.lisp
94%% optparse.lisp
95%% frontend.lisp
96%% final.lisp
97
98\include{parsing}
99%% package.lisp
100%% floc-impl.lisp
101%% floc-proto.lisp
102%% streams-impl.lisp
103%% streams-proto.lisp
104%% scanner-context-impl.lisp
105%% scanner-impl.lisp
106%% scanner-proto.lisp
107%% scanner-token-impl.lisp
108%% scanner-charbuf-impl.lisp
109%% parser-impl.lisp
110%% parser-proto.lisp
111%% parser-expr-impl.lisp
112%% parser-expr-proto.lisp
113%% lexer-impl.lisp
114%% lexer-proto.lisp
115
116\include{clang}
117%% c-types-class-impl.lisp
118%% c-types-impl.lisp
119%% c-types-parse.lisp
120%% c-types-proto.lisp
121%% codegen-impl.lisp
122%% codegen-proto.lisp
123%% fragment-parse.lisp
124
125\include{meta}
126%% classes.lisp
127%% class-utilities.lisp
128%% class-make-impl.lisp
129%% class-make-proto.lisp
130%% class-finalize-impl.lisp
131%% class-finalize-proto.lisp
132
133\include{layout}
134%% class-layout-impl.lisp
135%% class-layout-proto.lisp
136%% method-impl.lisp
137%% method-proto.lisp
138%% method-aggregate.lisp
139
140\include{module}
141%% module-impl.lisp
142%% module-parse.lisp
143%% module-proto.lisp
144%% builtin.lisp
145
146\include{output}
147%% output-impl.lisp
148%% output-proto.lisp
149%% class-output.lisp
150%% module-output.lisp
151
152%%%--------------------------------------------------------------------------
153\part{Appendices}
154\appendix
155
156\include{cutting-room-floor}
157
158%%%--------------------------------------------------------------------------
159\backmatter
160
161\printindex
162
163%%%----- That's all, folks --------------------------------------------------
164\end{document}
165
166%%% Local variables:
167%%% mode: LaTeX
168%%% TeX-PDF-mode: t
169%%% End: