blob: e3dddd7f4c9e28e0dfb4a5d44adec15b36365c23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
\documentclass[12pt,a4paper,titlepage,oneside]{article}
\usepackage[utf8]{inputenc}
\usepackage{oop_prot}
\usepackage{url}
\usepackage{pdfpages}
\usepackage{booktabs}
\title{Beispiel 2}
\author{
Günther Neuwirth, \matrnr 0626638\\
{\small e0626638@student.tuwien.ac.at}
Manuel Mausz, \matrnr 0728348\\
{\small manuel-tu@mausz.at}\\
}
\begin{document}
% create titlepage
\maketitle
\tableofcontents
\newpage
%------------------------------------------------------------------
%------------------------------------------------------------------
\section{Aufgabenstellung - Beispiel 2}
\includegraphics[width=\textwidth,page=1]{../angabe.pdf}
\includegraphics[width=\textwidth,page=2]{../angabe.pdf}
\includegraphics[width=\textwidth,page=3]{../angabe.pdf}
%------------------------------------------------------------------
%------------------------------------------------------------------
\section{Beispiel 2}
\subsection{Design}\label{Design}
Abbildung~\ref{fig:classdiagram1} zeigt das Klassendiagramm der Aufgabe.
TODO
%==================================================================
\begin{figure}[htb]
\begin{center}
\epsfxsize=0.9\textwidth\epsfbox{imgsynth2.png}
\end{center}
\caption{Klassendiagramm 1}
\label{fig:classdiagram1}
\end{figure}
%==================================================================
\subsection{Verwaltung der Ressourcen}
TODO
\subsection{Fehlerbehandlung}
TODO
\subsection{Implementierung}
TODO
%------------------------------------------------------------------
%------------------------------------------------------------------
\section{Projektverlauf}
\subsection{Probleme und Fallstricke}
TODO
\subsection{Arbeitsaufwand}
TODO
\begin{tabular}{ll}
\toprule
Entwicklungsschritt / Meilenstein & Arbeitsaufwand\\
\midrule
TODO\\
\hline
TODO\\
\bottomrule
\end{tabular}
%------------------------------------------------------------------
%------------------------------------------------------------------
\section{Listings}\label{Listings}
\subsection{imgsynth2.cpp}
\lstinputlisting{../imgsynth2/imgsynth2.cpp}
\newpage
\subsection{cscriptparser.h}
\lstinputlisting{../imgsynth2/cscriptparser.h}
\newpage
\subsection{cscriptparser.cpp}
\lstinputlisting{../imgsynth2/cscriptparser.cpp}
\newpage
\subsection{cfile.h}
\lstinputlisting{../imgsynth2/cfile.h}
\newpage
\subsection{cbitmap.h}
\lstinputlisting{../imgsynth2/cbitmap.h}
\newpage
\subsection{cbitmap.cpp}
\lstinputlisting{../imgsynth2/cbitmap.cpp}
\newpage
\subsection{cwindowsbitmap.h}
\lstinputlisting{../imgsynth2/cwindowsbitmap.h}
\newpage
\subsection{cwindowsbitmap.cpp}
\lstinputlisting{../imgsynth2/cwindowsbitmap.cpp}
\newpage
\subsection{cpixmap.h}
\lstinputlisting{../imgsynth2/cpixmap.h}
\newpage
\subsection{cpixmap.cpp}
\lstinputlisting{../imgsynth2/cpixmap.cpp}
\newpage
\subsection{cpixelformat.h}
\lstinputlisting{../imgsynth2/cpixelformat.h}
\newpage
\subsection{cpixelformat\_bgr24.h}
\lstinputlisting{../imgsynth2/cpixelformat_bgr24.h}
\newpage
\subsection{cpixelformat\_bgr24.cpp}
\lstinputlisting{../imgsynth2/cpixelformat_bgr24.cpp}
\newpage
\subsection{cpixelformat\_bgr555.h}
\lstinputlisting{../imgsynth2/cpixelformat_bgr555.h}
\newpage
\subsection{cpixelformat\_bgr555.cpp}
\lstinputlisting{../imgsynth2/cpixelformat_bgr555.cpp}
\newpage
\subsection{cpixelformat\_indexed8.h}
\lstinputlisting{../imgsynth2/cpixelformat_indexed8.h}
\newpage
\subsection{cpixelformat\_indexed8.cpp}
\lstinputlisting{../imgsynth2/cpixelformat_indexed8.cpp}
\end{document}
|