From b8d208f2e422cee418144c0b3ee52f79f402cab7 Mon Sep 17 00:00:00 2001 From: Guille Gutierrez Date: Wed, 26 Apr 2023 10:10:55 -0400 Subject: [PATCH] Update 'C++GUIDE.md' --- C++GUIDE.md | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/C++GUIDE.md b/C++GUIDE.md index 90a1010..3820c69 100644 --- a/C++GUIDE.md +++ b/C++GUIDE.md @@ -212,34 +212,6 @@ namespace sample { ``` -##### .cpp Example - -```c++ -/* -SPDX - License - Identifier: GPL-3.0-or-later -Copyright © 2022 Concordia CERC group -Project Coder Guillermo Gutierrez Morote -*/ - -/// \file person.cpp - -#include -#include "person.hpp" - -namespace sample { - Person::Person(std::string name) - { - this->name = name; - } - - Person::get_name() - { - return this->name; - } - -} -``` - Attributes with known units should be explicit in method's comment. ```c++