diff --git a/C++GUIDE.md b/C++GUIDE.md index 6832489..90a1010 100644 --- a/C++GUIDE.md +++ b/C++GUIDE.md @@ -175,7 +175,7 @@ Modern C++ solves lot's of issues with clasic C++ specially related to multiplat All public classes, properties, and methods must have code comments in the header files, we are using [doxygen](https://www.doxygen.nl) for auto documentation and the code comments must start with capital letters and /// syntax is preferred -File include for documentation needs to be added in both hpp and cpp files, after the license and contact information. +File include for documentation needs to be added only in the hpp files, after the license and contact information. ##### .hpp Example @@ -194,6 +194,7 @@ Project Coder Guillermo Gutierrez Morote namespace sample { + /// Person class description class Person { public: