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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 15 additions & 6 deletions breadcrumbs/doc/style/style.hpp
@@ -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 @@ private:
int i_attrOne = 0;
char c_attrTwo;
};

#endif