summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--thesis/thesis.tex9
1 files changed, 4 insertions, 5 deletions
diff --git a/thesis/thesis.tex b/thesis/thesis.tex
index aaa8aaf..7d5b549 100644
--- a/thesis/thesis.tex
+++ b/thesis/thesis.tex
@@ -1209,17 +1209,16 @@ ssr-aap -N “server” -C “127.0.0.1:50002”
To be able to distinguish between types of
clients and servers, several message levels were implemented for the
\gls{osc} interface conceived in the course of this work.\\
- The \mintinline{c++}{enumeration class MessageLevel}
- \pdfcomment[color=red,icon=Note]{Don't allow static\_casts above
- MessageLevel::GUI\_SERVER} (see Listing~\ref{lst:ssr_global.h}) defines
- the four types \mintinline{c++}{CLIENT}, \mintinline{c++}{GUI_CLIENT},
+ The \mintinline{c++}{enumeration class MessageLevel} (see
+ Listing~\ref{lst:ssr_global.h}) defines the four types
+ \mintinline{c++}{CLIENT}, \mintinline{c++}{GUI_CLIENT},
\mintinline{c++}{SERVER}, \mintinline{c++}{GUI_SERVER}, which are
represented as non-negative integers (in ascending order), starting
from 0.\\
\begin{listing}[!htb]
\begin{mdframed}
- \inputminted[numbers=left, firstline=54, lastline=60,
+ \inputminted[numbers=left, firstline=54, lastline=61,
fontsize=\footnotesize]{c++}{../../ssr/src/ssr_global.h}
\end{mdframed}
\caption{src/ssr\_global.h: \mintinline{c++}{enum class