Skip to content

Header File Duplication Avoidance #10

Merged
merged 10 commits into from
Nov 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions breadcrumbs/doc/style/style.hpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
/*
*
* This file contains the style of each programming construct
* to use in this project.
*
* It should be followed to the letter! All spaces are
* necessary! Make sure to take note of camel case and other
* variable naming schemes!
*
*/

This file contains the style of each programming construct
to use in this project.
#ifndef STYLE_HPP
#define STYLE_HPP

It should be followed to the letter! All spaces are
necessary! Make sure to take note of camel case and other
variable naming schemes!
#include <stdio.h>

*/
#include "style.hpp"

// Header File:
class TestClass
Expand All @@ -28,3 +35,5 @@ class TestClass
int i_attrOne = 0;
char c_attrTwo;
};

#endif