From 698611a51be0b0b7ef9027e998a0937c0372b0bb Mon Sep 17 00:00:00 2001 From: Matthew F Scalzo Date: Mon, 4 Nov 2019 16:56:51 -0500 Subject: [PATCH] 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 --- breadcrumbs/doc/style/style.hpp | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/breadcrumbs/doc/style/style.hpp b/breadcrumbs/doc/style/style.hpp index a4b4c78..dd26d76 100644 --- a/breadcrumbs/doc/style/style.hpp +++ b/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 -*/ +#include "style.hpp" // Header File: class TestClass @@ -28,3 +35,5 @@ private: int i_attrOne = 0; char c_attrTwo; }; + +#endif