Skip to content
Snippets Groups Projects
Commit cb62d978 authored by Severin Landwein's avatar Severin Landwein
Browse files

add include order

parent c7683ad6
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,19 @@
-> damit werden die Funktionen/Methoden besser testbar
* Jede Funktion/Methode soll mit einem oder mehreren Unittests getestet werden, soweit das möglich ist.
* Jede Funktion/Methode soll nach Fertigstellung von einem Kollegen einem Review unterzogen werden.
Konventionen zur Anordnung
=================================
* Die Reihenfolge von Includes wird nach dem folgenden Schema durchgeführt:
-- Eigene Headerdatei
-- Leerzeile
-- C System Header
-- Leerzeile
-- C++ Standardbibliotheken
-- Leerzeile
-- Andere Bibliotheken
-- Leerzeile
-- Projektheader
*/
......@@ -34,6 +47,16 @@
#define KONST_TO_SHOW
#include "code_conventions.h"
#include <sys/types.h>
#include <unistd.h>
#include <string>
#include <vector>
#include "another_header.h"
class ClassForDemonstration
{
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment