Updated Coding Style (markdown)

Felix Weilbach 2021-01-15 14:10:19 +01:00
parent d5e3661eb9
commit 86e2ce0684

@ -12,6 +12,10 @@ The coding style of the project is based on the coding style of [Qt](https://www
Member variables should be prefixed with a underscore. For example write `_myClassVariable` instead of `myClassVariable`.
## Header files
Every header file should contain a copyright note and `#pragma once` should preferred instead of `#ifndef` header guards.
## STL
When possible use data structures from Qt. For example use `QVector` instead of `std::vector`.