middle of porting; unstable, don't checkout; refs #1
This commit is contained in:
19
doc/latex/Makefile
Normal file
19
doc/latex/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
all: refman.pdf
|
||||
|
||||
pdf: refman.pdf
|
||||
|
||||
refman.pdf: clean refman.tex
|
||||
pdflatex refman.tex
|
||||
makeindex refman.idx
|
||||
pdflatex refman.tex
|
||||
latex_count=5 ; \
|
||||
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
|
||||
do \
|
||||
echo "Rerunning latex...." ;\
|
||||
pdflatex refman.tex ;\
|
||||
latex_count=`expr $$latex_count - 1` ;\
|
||||
done
|
||||
|
||||
|
||||
clean:
|
||||
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out refman.pdf
|
413
doc/latex/doxygen.sty
Normal file
413
doc/latex/doxygen.sty
Normal file
@@ -0,0 +1,413 @@
|
||||
\NeedsTeXFormat{LaTeX2e}
|
||||
\ProvidesPackage{doxygen}
|
||||
|
||||
% Packages used by this style file
|
||||
\RequirePackage{alltt}
|
||||
\RequirePackage{array}
|
||||
\RequirePackage{calc}
|
||||
\RequirePackage{color}
|
||||
\RequirePackage{fancyhdr}
|
||||
\RequirePackage{longtable}
|
||||
\RequirePackage{verbatim}
|
||||
\RequirePackage{ifthen}
|
||||
\RequirePackage[table]{xcolor}
|
||||
|
||||
% Use helvetica font instead of times roman
|
||||
\RequirePackage{helvet}
|
||||
\RequirePackage{sectsty}
|
||||
\RequirePackage{tocloft}
|
||||
\providecommand{\rmdefault}{phv}
|
||||
\providecommand{\bfdefault}{bc}
|
||||
|
||||
|
||||
% Setup fancy headings
|
||||
\pagestyle{fancyplain}
|
||||
\newcommand{\clearemptydoublepage}{%
|
||||
\newpage{\pagestyle{empty}\cleardoublepage}%
|
||||
}
|
||||
\renewcommand{\sectionmark}[1]{%
|
||||
\markright{\thesection\ #1}%
|
||||
}
|
||||
\fancyhead[LE]{\fancyplain{}{\bfseries\thepage}}
|
||||
\fancyhead[CE]{\fancyplain{}{}}
|
||||
\fancyhead[RE]{\fancyplain{}{\bfseries\leftmark}}
|
||||
\fancyhead[LO]{\fancyplain{}{\bfseries\rightmark}}
|
||||
\fancyhead[CO]{\fancyplain{}{}}
|
||||
\fancyhead[RO]{\fancyplain{}{\bfseries\thepage}}
|
||||
\fancyfoot[LE]{\fancyplain{}{}}
|
||||
\fancyfoot[CE]{\fancyplain{}{}}
|
||||
\fancyfoot[RE]{\fancyplain{}{\bfseries\scriptsize Erzeugt am Sat Dec 10 2011 10:17:12 für Projektdokumentation mrw-\/c++ von Doxygen }}
|
||||
\fancyfoot[LO]{\fancyplain{}{\bfseries\scriptsize Erzeugt am Sat Dec 10 2011 10:17:12 für Projektdokumentation mrw-\/c++ von Doxygen }}
|
||||
\fancyfoot[CO]{\fancyplain{}{}}
|
||||
\fancyfoot[RO]{\fancyplain{}{}}
|
||||
%---------- Internal commands used in this style file ----------------
|
||||
|
||||
% Generic environment used by all paragraph-based environments defined
|
||||
% below. Note that the command \title{...} needs to be defined inside
|
||||
% those environments!
|
||||
\newenvironment{DoxyDesc}[1]{%
|
||||
\begin{list}{}%
|
||||
{%
|
||||
\settowidth{\labelwidth}{40pt}%
|
||||
\setlength{\leftmargin}{\labelwidth}%
|
||||
\setlength{\parsep}{0pt}%
|
||||
\setlength{\itemsep}{-4pt}%
|
||||
\renewcommand{\makelabel}{\entrylabel}%
|
||||
}%
|
||||
\item[#1]%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
%---------- Commands used by doxygen LaTeX output generator ----------
|
||||
|
||||
% Used by <pre> ... </pre>
|
||||
\newenvironment{DoxyPre}{%
|
||||
\small%
|
||||
\begin{alltt}%
|
||||
}{%
|
||||
\end{alltt}%
|
||||
\normalsize%
|
||||
}
|
||||
|
||||
% Used by @code ... @endcode
|
||||
\newenvironment{DoxyCode}{%
|
||||
\footnotesize%
|
||||
\verbatim%
|
||||
}{%
|
||||
\endverbatim%
|
||||
\normalsize%
|
||||
}
|
||||
|
||||
% Used by @example, @include, @includelineno and @dontinclude
|
||||
\newenvironment{DoxyCodeInclude}{%
|
||||
\DoxyCode%
|
||||
}{%
|
||||
\endDoxyCode%
|
||||
}
|
||||
|
||||
% Used by @verbatim ... @endverbatim
|
||||
\newenvironment{DoxyVerb}{%
|
||||
\footnotesize%
|
||||
\verbatim%
|
||||
}{%
|
||||
\endverbatim%
|
||||
\normalsize%
|
||||
}
|
||||
|
||||
% Used by @verbinclude
|
||||
\newenvironment{DoxyVerbInclude}{%
|
||||
\DoxyVerb%
|
||||
}{%
|
||||
\endDoxyVerb%
|
||||
}
|
||||
|
||||
% Used by numbered lists (using '-#' or <ol> ... </ol>)
|
||||
\newenvironment{DoxyEnumerate}{%
|
||||
\enumerate%
|
||||
}{%
|
||||
\endenumerate%
|
||||
}
|
||||
|
||||
% Used by bullet lists (using '-', @li, @arg, or <ul> ... </ul>)
|
||||
\newenvironment{DoxyItemize}{%
|
||||
\itemize%
|
||||
}{%
|
||||
\enditemize%
|
||||
}
|
||||
|
||||
% Used by description lists (using <dl> ... </dl>)
|
||||
\newenvironment{DoxyDescription}{%
|
||||
\description%
|
||||
}{%
|
||||
\enddescription%
|
||||
}
|
||||
|
||||
% Used by @image, @dotfile, and @dot ... @enddot
|
||||
% (only if caption is specified)
|
||||
\newenvironment{DoxyImage}{%
|
||||
\begin{figure}[H]%
|
||||
\begin{center}%
|
||||
}{%
|
||||
\end{center}%
|
||||
\end{figure}%
|
||||
}
|
||||
|
||||
% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc
|
||||
% (only if no caption is specified)
|
||||
\newenvironment{DoxyImageNoCaption}{%
|
||||
}{%
|
||||
}
|
||||
|
||||
% Used by @attention
|
||||
\newenvironment{DoxyAttention}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @author and @authors
|
||||
\newenvironment{DoxyAuthor}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @date
|
||||
\newenvironment{DoxyDate}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @invariant
|
||||
\newenvironment{DoxyInvariant}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @note
|
||||
\newenvironment{DoxyNote}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @post
|
||||
\newenvironment{DoxyPostcond}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @pre
|
||||
\newenvironment{DoxyPrecond}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @remark
|
||||
\newenvironment{DoxyRemark}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @return
|
||||
\newenvironment{DoxyReturn}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @since
|
||||
\newenvironment{DoxySince}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @see
|
||||
\newenvironment{DoxySeeAlso}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @version
|
||||
\newenvironment{DoxyVersion}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @warning
|
||||
\newenvironment{DoxyWarning}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
}{%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by @internal
|
||||
\newenvironment{DoxyInternal}[1]{%
|
||||
\paragraph*{#1}%
|
||||
}{%
|
||||
}
|
||||
|
||||
% Used by @par and @paragraph
|
||||
\newenvironment{DoxyParagraph}[1]{%
|
||||
\begin{list}{}%
|
||||
{%
|
||||
\settowidth{\labelwidth}{40pt}%
|
||||
\setlength{\leftmargin}{\labelwidth}%
|
||||
\setlength{\parsep}{0pt}%
|
||||
\setlength{\itemsep}{-4pt}%
|
||||
\renewcommand{\makelabel}{\entrylabel}%
|
||||
}%
|
||||
\item[#1]%
|
||||
}{%
|
||||
\end{list}%
|
||||
}
|
||||
|
||||
% Used by parameter lists
|
||||
\newenvironment{DoxyParams}[2][]{%
|
||||
\begin{DoxyDesc}{#2}%
|
||||
\begin{description}%
|
||||
\item[] \hspace{\fill} \vspace{-25pt}%
|
||||
\definecolor{tableShade}{HTML}{F8F8F8}%
|
||||
\rowcolors{1}{white}{tableShade}%
|
||||
\arrayrulecolor{gray}%
|
||||
\setlength{\tabcolsep}{0.01\textwidth}%
|
||||
\ifthenelse{\equal{#1}{}}
|
||||
{\begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
|
||||
p{0.87\textwidth}|}}%
|
||||
{\ifthenelse{\equal{#1}{1}}%
|
||||
{\begin{longtable}{|>{\centering}p{0.10\textwidth}|%
|
||||
>{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
|
||||
p{0.75\textwidth}|}}%
|
||||
{\begin{longtable}{|>{\centering}p{0.10\textwidth}|%
|
||||
>{\centering\hspace{0pt}}p{0.15\textwidth}|%
|
||||
>{\raggedleft\hspace{0pt}}p{0.15\textwidth}|%
|
||||
p{0.58\textwidth}|}}%
|
||||
}\hline%
|
||||
}{%
|
||||
\end{longtable}%
|
||||
\end{description}%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% is used for parameters within a detailed function description
|
||||
\newenvironment{DoxyParamCaption}{%
|
||||
\renewcommand{\item}[2][]{##1 {\em ##2}}%
|
||||
}{%
|
||||
}
|
||||
|
||||
% Used by return value lists
|
||||
\newenvironment{DoxyRetVals}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
\begin{description}%
|
||||
\item[] \hspace{\fill} \vspace{-25pt}%
|
||||
\definecolor{tableShade}{HTML}{F8F8F8}%
|
||||
\rowcolors{1}{white}{tableShade}%
|
||||
\arrayrulecolor{gray}%
|
||||
\setlength{\tabcolsep}{0.01\textwidth}%
|
||||
\begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
|
||||
p{0.77\textwidth}|}%
|
||||
\hline%
|
||||
}{%
|
||||
\end{longtable}%
|
||||
\end{description}%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by exception lists
|
||||
\newenvironment{DoxyExceptions}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
\begin{description}%
|
||||
\item[] \hspace{\fill} \vspace{-25pt}%
|
||||
\definecolor{tableShade}{HTML}{F8F8F8}%
|
||||
\rowcolors{1}{white}{tableShade}%
|
||||
\arrayrulecolor{gray}%
|
||||
\setlength{\tabcolsep}{0.01\textwidth}%
|
||||
\begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
|
||||
p{0.77\textwidth}|}%
|
||||
\hline%
|
||||
}{%
|
||||
\end{longtable}%
|
||||
\end{description}%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
% Used by template parameter lists
|
||||
\newenvironment{DoxyTemplParams}[1]{%
|
||||
\begin{DoxyDesc}{#1}%
|
||||
\begin{description}%
|
||||
\item[] \hspace{\fill} \vspace{-25pt}%
|
||||
\definecolor{tableShade}{HTML}{F8F8F8}%
|
||||
\rowcolors{1}{white}{tableShade}%
|
||||
\arrayrulecolor{gray}%
|
||||
\setlength{\tabcolsep}{0.01\textwidth}%
|
||||
\begin{longtable}{|>{\raggedleft\hspace{0pt}}p{0.25\textwidth}|%
|
||||
p{0.77\textwidth}|}%
|
||||
\hline%
|
||||
}{%
|
||||
\end{longtable}%
|
||||
\end{description}%
|
||||
\end{DoxyDesc}%
|
||||
}
|
||||
|
||||
\newcommand{\doxyref}[3]{\textbf{#1} (\textnormal{#2}\,\pageref{#3})}
|
||||
\newenvironment{DoxyCompactList}
|
||||
{\begin{list}{}{
|
||||
\setlength{\leftmargin}{0.5cm}
|
||||
\setlength{\itemsep}{0pt}
|
||||
\setlength{\parsep}{0pt}
|
||||
\setlength{\topsep}{0pt}
|
||||
\renewcommand{\makelabel}{\hfill}}}
|
||||
{\end{list}}
|
||||
\newenvironment{DoxyCompactItemize}
|
||||
{
|
||||
\begin{itemize}
|
||||
\setlength{\itemsep}{-3pt}
|
||||
\setlength{\parsep}{0pt}
|
||||
\setlength{\topsep}{0pt}
|
||||
\setlength{\partopsep}{0pt}
|
||||
}
|
||||
{\end{itemize}}
|
||||
\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp}
|
||||
\newlength{\tmplength}
|
||||
\newenvironment{TabularC}[1]
|
||||
{
|
||||
\setlength{\tmplength}
|
||||
{\linewidth/(#1)-\tabcolsep*2-\arrayrulewidth*(#1+1)/(#1)}
|
||||
\par\begin{tabular*}{\linewidth}
|
||||
{*{#1}{|>{\PBS\raggedright\hspace{0pt}}p{\the\tmplength}}|}
|
||||
}
|
||||
{\end{tabular*}\par}
|
||||
\newcommand{\entrylabel}[1]{
|
||||
{\parbox[b]{\labelwidth-4pt}{\makebox[0pt][l]{\textbf{#1}}\vspace{1.5\baselineskip}}}}
|
||||
\newenvironment{Desc}
|
||||
{\begin{list}{}
|
||||
{
|
||||
\settowidth{\labelwidth}{40pt}
|
||||
\setlength{\leftmargin}{\labelwidth}
|
||||
\setlength{\parsep}{0pt}
|
||||
\setlength{\itemsep}{-4pt}
|
||||
\renewcommand{\makelabel}{\entrylabel}
|
||||
}
|
||||
}
|
||||
{\end{list}}
|
||||
\newenvironment{Indent}
|
||||
{\begin{list}{}{\setlength{\leftmargin}{0.5cm}}
|
||||
\item[]\ignorespaces}
|
||||
{\unskip\end{list}}
|
||||
\setlength{\parindent}{0cm}
|
||||
\setlength{\parskip}{0.2cm}
|
||||
\addtocounter{secnumdepth}{2}
|
||||
\usepackage[T1]{fontenc}
|
||||
\makeatletter
|
||||
\renewcommand{\paragraph}{\@startsection{paragraph}{4}{0ex}%
|
||||
{-1.0ex}%
|
||||
{1.0ex}%
|
||||
{\usefont{OT1}{phv}{bc}{n}\color{darkgray}}}
|
||||
\renewcommand{\subparagraph}{\@startsection{subparagraph}{5}{0ex}%
|
||||
{-1.0ex}%
|
||||
{1.0ex}%
|
||||
{\usefont{OT1}{phv}{bc}{n}\color{darkgray}}}
|
||||
\makeatother
|
||||
\allsectionsfont{\usefont{OT1}{phv}{bc}{n}\selectfont\color{darkgray}}
|
||||
\stepcounter{secnumdepth}
|
||||
\stepcounter{tocdepth}
|
||||
\definecolor{comment}{rgb}{0.5,0.0,0.0}
|
||||
\definecolor{keyword}{rgb}{0.0,0.5,0.0}
|
||||
\definecolor{keywordtype}{rgb}{0.38,0.25,0.125}
|
||||
\definecolor{keywordflow}{rgb}{0.88,0.5,0.0}
|
||||
\definecolor{preprocessor}{rgb}{0.5,0.38,0.125}
|
||||
\definecolor{stringliteral}{rgb}{0.0,0.125,0.25}
|
||||
\definecolor{charliteral}{rgb}{0.0,0.5,0.5}
|
||||
\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0}
|
||||
\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43}
|
||||
\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0}
|
||||
\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0}
|
5
doc/latex/files.tex
Normal file
5
doc/latex/files.tex
Normal file
@@ -0,0 +1,5 @@
|
||||
\subsection{Auflistung der Dateien}
|
||||
Hier folgt die Aufzählung aller Dateien mit einer Kurzbeschreibung:\begin{DoxyCompactList}
|
||||
\item\contentsline{section}{/home/marc/svn/mrw-\/c++/src/\hyperlink{main_8cxx}{main.cxx} }{\pageref{main_8cxx}}{}
|
||||
\item\contentsline{section}{/home/marc/svn/mrw-\/c++/src/\hyperlink{version_8cxx}{version.cxx} }{\pageref{version_8cxx}}{}
|
||||
\end{DoxyCompactList}
|
47
doc/latex/main_8cxx.tex
Normal file
47
doc/latex/main_8cxx.tex
Normal file
@@ -0,0 +1,47 @@
|
||||
\hypertarget{main_8cxx}{
|
||||
\subsection{/home/marc/svn/mrw-\/c++/src/main.cxx-\/Dateireferenz}
|
||||
\label{main_8cxx}\index{/home/marc/svn/mrw-\/c++/src/main.cxx@{/home/marc/svn/mrw-\/c++/src/main.cxx}}
|
||||
}
|
||||
\subsubsection*{Funktionen}
|
||||
\begin{DoxyCompactItemize}
|
||||
\item
|
||||
int \hyperlink{main_8cxx_a1c03069360f1f90a556eb537e0ff8a72}{main} (int argv, char $\ast$$\ast$argc)
|
||||
\end{DoxyCompactItemize}
|
||||
|
||||
|
||||
\subsubsection{Ausführliche Beschreibung}
|
||||
\begin{DoxyParagraph}{File-\/ID}
|
||||
|
||||
\end{DoxyParagraph}
|
||||
\begin{DoxyParagraph}{Id:}
|
||||
\hyperlink{main_8cxx}{main.cxx} 9 2009-\/04-\/02 12:54:44Z marwae
|
||||
\end{DoxyParagraph}
|
||||
|
||||
|
||||
Definiert in Datei \hyperlink{main_8cxx_source}{main.cxx}.
|
||||
|
||||
|
||||
|
||||
\subsubsection{Dokumentation der Funktionen}
|
||||
\hypertarget{main_8cxx_a1c03069360f1f90a556eb537e0ff8a72}{
|
||||
\index{main.cxx@{main.cxx}!main@{main}}
|
||||
\index{main@{main}!main.cxx@{main.cxx}}
|
||||
\paragraph[{main}]{\setlength{\rightskip}{0pt plus 5cm}int main (
|
||||
\begin{DoxyParamCaption}
|
||||
\item[{int}]{argv, }
|
||||
\item[{char $\ast$$\ast$}]{argc}
|
||||
\end{DoxyParamCaption}
|
||||
)}}
|
||||
\label{main_8cxx_a1c03069360f1f90a556eb537e0ff8a72}
|
||||
|
||||
|
||||
Definiert in Zeile 10 der Datei main.cxx.
|
||||
|
||||
|
||||
\begin{DoxyCode}
|
||||
{
|
||||
} catch (...) {
|
||||
// unexpected exception - just terminate
|
||||
return 1;
|
||||
}
|
||||
\end{DoxyCode}
|
4
doc/latex/namespaces.tex
Normal file
4
doc/latex/namespaces.tex
Normal file
@@ -0,0 +1,4 @@
|
||||
\subsection{Liste aller Namensbereiche}
|
||||
Liste aller Namensbereiche mit Kurzbeschreibung:\begin{DoxyCompactList}
|
||||
\item\contentsline{section}{\hyperlink{namespacexml}{xml} }{\pageref{namespacexml}}{}
|
||||
\end{DoxyCompactList}
|
53
doc/latex/namespacexml.tex
Normal file
53
doc/latex/namespacexml.tex
Normal file
@@ -0,0 +1,53 @@
|
||||
\hypertarget{namespacexml}{
|
||||
\subsection{xml-\/Namensbereichsreferenz}
|
||||
\label{namespacexml}\index{xml@{xml}}
|
||||
}
|
||||
\subsubsection*{Funktionen}
|
||||
\begin{DoxyCompactItemize}
|
||||
\item
|
||||
const std::string \hyperlink{namespacexml_a2cc63e4a6ec47ca21a8a548c653ccb27}{IDENT} (\char`\"{}\$Id: mrw-\/c++-\/0.0.267 \$\char`\"{})
|
||||
\item
|
||||
std::string \hyperlink{namespacexml_a6fc15802357a281e4520823cf5768684}{version} ()
|
||||
\item
|
||||
const std::string \hyperlink{namespacexml_af1c296a46e71f9a58e904129108cb4e1}{WHAT} (\char`\"{}\#(@) mrw-\/c++-\/0.0.267\char`\"{})
|
||||
\end{DoxyCompactItemize}
|
||||
|
||||
|
||||
\subsubsection{Dokumentation der Funktionen}
|
||||
\hypertarget{namespacexml_a2cc63e4a6ec47ca21a8a548c653ccb27}{
|
||||
\index{xml@{xml}!IDENT@{IDENT}}
|
||||
\index{IDENT@{IDENT}!xml@{xml}}
|
||||
\paragraph[{IDENT}]{\setlength{\rightskip}{0pt plus 5cm}const std::string xml::IDENT (
|
||||
\begin{DoxyParamCaption}
|
||||
\item[{\char`\"{}\$Id: mrw-\/c++-\/0.0.267 \$\char`\"{}}]{}
|
||||
\end{DoxyParamCaption}
|
||||
)}}
|
||||
\label{namespacexml_a2cc63e4a6ec47ca21a8a548c653ccb27}
|
||||
\hypertarget{namespacexml_a6fc15802357a281e4520823cf5768684}{
|
||||
\index{xml@{xml}!version@{version}}
|
||||
\index{version@{version}!xml@{xml}}
|
||||
\paragraph[{version}]{\setlength{\rightskip}{0pt plus 5cm}std::string xml::version (
|
||||
\begin{DoxyParamCaption}
|
||||
{}
|
||||
\end{DoxyParamCaption}
|
||||
)}}
|
||||
\label{namespacexml_a6fc15802357a281e4520823cf5768684}
|
||||
|
||||
|
||||
Definiert in Zeile 11 der Datei version.cxx.
|
||||
|
||||
|
||||
\begin{DoxyCode}
|
||||
{
|
||||
return "mrw-c++-0.0.267";
|
||||
}
|
||||
\end{DoxyCode}
|
||||
\hypertarget{namespacexml_af1c296a46e71f9a58e904129108cb4e1}{
|
||||
\index{xml@{xml}!WHAT@{WHAT}}
|
||||
\index{WHAT@{WHAT}!xml@{xml}}
|
||||
\paragraph[{WHAT}]{\setlength{\rightskip}{0pt plus 5cm}const std::string xml::WHAT (
|
||||
\begin{DoxyParamCaption}
|
||||
\item[{\char`\"{}\#(@) mrw-\/c++-\/0.0.267\char`\"{}}]{}
|
||||
\end{DoxyParamCaption}
|
||||
)}}
|
||||
\label{namespacexml_af1c296a46e71f9a58e904129108cb4e1}
|
66
doc/latex/refman.tex
Normal file
66
doc/latex/refman.tex
Normal file
@@ -0,0 +1,66 @@
|
||||
\batchmode
|
||||
\documentclass[a4paper]{article}
|
||||
\usepackage{makeidx}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{multicol}
|
||||
\usepackage{float}
|
||||
\usepackage{listings}
|
||||
\usepackage{color}
|
||||
\usepackage{ifthen}
|
||||
\usepackage[table]{xcolor}
|
||||
\usepackage{textcomp}
|
||||
\usepackage{alltt}
|
||||
\usepackage{ifpdf}
|
||||
\ifpdf
|
||||
\usepackage[pdftex,
|
||||
pagebackref=true,
|
||||
colorlinks=true,
|
||||
linkcolor=blue,
|
||||
unicode
|
||||
]{hyperref}
|
||||
\else
|
||||
\usepackage[ps2pdf,
|
||||
pagebackref=true,
|
||||
colorlinks=true,
|
||||
linkcolor=blue,
|
||||
unicode
|
||||
]{hyperref}
|
||||
\usepackage{pspicture}
|
||||
\fi
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[ngerman]{babel}
|
||||
|
||||
\usepackage{mathptmx}
|
||||
\usepackage[scaled=.90]{helvet}
|
||||
\usepackage{courier}
|
||||
\usepackage{sectsty}
|
||||
\usepackage[titles]{tocloft}
|
||||
\usepackage{doxygen}
|
||||
\lstset{language=C++,inputencoding=utf8,basicstyle=\footnotesize,breaklines=true,breakatwhitespace=true,tabsize=2,numbers=left }
|
||||
\makeindex
|
||||
\setcounter{tocdepth}{3}
|
||||
\renewcommand{\footrulewidth}{0.4pt}
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
\begin{document}
|
||||
\hypersetup{pageanchor=false}
|
||||
\begin{titlepage}
|
||||
\vspace*{7cm}
|
||||
\begin{center}
|
||||
{\Large Projektdokumentation mrw-\/c++ \\[1ex]\large Version 0.0.267 }\\
|
||||
\vspace*{1cm}
|
||||
{\large Erzeugt von Doxygen 1.7.4}\\
|
||||
\vspace*{0.5cm}
|
||||
{\small Sat Dec 10 2011 10:17:12}\\
|
||||
\end{center}
|
||||
\end{titlepage}
|
||||
\pagenumbering{roman}
|
||||
\tableofcontents
|
||||
\pagenumbering{arabic}
|
||||
\hypersetup{pageanchor=true}
|
||||
\section{Dokumentation der Namensbereiche}
|
||||
\input{namespacexml}
|
||||
\section{Datei-\/Dokumentation}
|
||||
\input{main_8cxx}
|
||||
\input{version_8cxx}
|
||||
\printindex
|
||||
\end{document}
|
28
doc/latex/version_8cxx.tex
Normal file
28
doc/latex/version_8cxx.tex
Normal file
@@ -0,0 +1,28 @@
|
||||
\hypertarget{version_8cxx}{
|
||||
\subsection{/home/marc/svn/mrw-\/c++/src/version.cxx-\/Dateireferenz}
|
||||
\label{version_8cxx}\index{/home/marc/svn/mrw-\/c++/src/version.cxx@{/home/marc/svn/mrw-\/c++/src/version.cxx}}
|
||||
}
|
||||
\subsubsection*{Namensbereiche}
|
||||
\begin{DoxyCompactItemize}
|
||||
\item
|
||||
namespace \hyperlink{namespacexml}{xml}
|
||||
\end{DoxyCompactItemize}
|
||||
\subsubsection*{Funktionen}
|
||||
\begin{DoxyCompactItemize}
|
||||
\item
|
||||
const std::string \hyperlink{namespacexml_a2cc63e4a6ec47ca21a8a548c653ccb27}{xml::IDENT} (\char`\"{}\$Id: mrw-\/c++-\/0.0.267 \$\char`\"{})
|
||||
\item
|
||||
std::string \hyperlink{namespacexml_a6fc15802357a281e4520823cf5768684}{xml::version} ()
|
||||
\item
|
||||
const std::string \hyperlink{namespacexml_af1c296a46e71f9a58e904129108cb4e1}{xml::WHAT} (\char`\"{}\#(@) mrw-\/c++-\/0.0.267\char`\"{})
|
||||
\end{DoxyCompactItemize}
|
||||
|
||||
|
||||
\subsubsection{Ausführliche Beschreibung}
|
||||
\begin{DoxyParagraph}{File-\/ID}
|
||||
\$Id\$
|
||||
\end{DoxyParagraph}
|
||||
|
||||
|
||||
Definiert in Datei \hyperlink{version_8cxx_source}{version.cxx}.
|
||||
|
Reference in New Issue
Block a user