diff options
author | David Runge <dave@sleepmap.de> | 2017-07-11 16:46:16 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-07-11 16:46:16 +0200 |
commit | 74d89f8afbc9a1d34d46da0e534ffa2ff7c82a5f (patch) | |
tree | 566c1a8e5e2bf0e3b3bb4cabb58486618340bc4d /thesis | |
parent | 540b10f1a650210d44faa0aaa3401993ce38d3c8 (diff) | |
download | master-thesis-74d89f8afbc9a1d34d46da0e534ffa2ff7c82a5f.tar.gz master-thesis-74d89f8afbc9a1d34d46da0e534ffa2ff7c82a5f.tar.bz2 master-thesis-74d89f8afbc9a1d34d46da0e534ffa2ff7c82a5f.tar.xz master-thesis-74d89f8afbc9a1d34d46da0e534ffa2ff7c82a5f.zip |
thesis/thesis.tex: Removing MessageLevel related pdfcomment (MessageLevels are now sane). Updating input for MessageLevel code example.
Diffstat (limited to 'thesis')
-rw-r--r-- | thesis/thesis.tex | 9 |
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 |