Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Header File Duplication Avoidance (#10)
* Adding simple style guides

* Update style.hpp

* Header file duplication avoidance

* Fixed typos

* Added Includes

* Fixed includes

* Fixed * alignment

* Fixed * again
  • Loading branch information
mfs16101 committed Nov 4, 2019
1 parent b3e0beb commit 698611a
Showing 1 changed file with 15 additions and 6 deletions.
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

0 comments on commit 698611a

Please sign in to comment.