diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2015-12-03 01:25:39 +0100 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2015-12-03 01:25:39 +0100 |
| commit | c7acaaf2d56f86f641a6985de394853b78772b82 (patch) | |
| tree | 90483c91300e8599600613767a1b432d5acbf5e5 | |
| parent | 460c5be29f39c62cb1842772ab305308a05b79ff (diff) | |
Adding a template for C++ files with the general header.
| -rw-r--r-- | convenience/convenience.tex | 8 | ||||
| -rw-r--r-- | convenience/template.cpp | 10 | ||||
| -rw-r--r-- | tcr.pdf | bin | 227781 -> 228436 bytes |
3 files changed, 17 insertions, 1 deletions
diff --git a/convenience/convenience.tex b/convenience/convenience.tex index 7871efd..497a2c5 100644 --- a/convenience/convenience.tex +++ b/convenience/convenience.tex @@ -1,4 +1,10 @@ \section{Convenience-Methoden} \subsection{Zeileneingabe} -\lstinputlisting{convenience/split.cpp}
\ No newline at end of file +\lstinputlisting{convenience/split.cpp} + +\subsection{Template} +\lstinputlisting{convenience/template.cpp} + +\subsection{Keyboard Layout} +\lstinline{setxkbmap de} setzt deutsched Tastaturlayout. diff --git a/convenience/template.cpp b/convenience/template.cpp new file mode 100644 index 0000000..f8631ac --- /dev/null +++ b/convenience/template.cpp @@ -0,0 +1,10 @@ +#include <bits/stdc++.h> + +using namespace std; + +void solve() {} + +int main() { + solve(); + return 0; +} Binary files differ |
