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