diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-18 10:30:31 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-18 10:30:31 +0100 |
| commit | 6169d697a5be59426d034b878bffc848de49491d (patch) | |
| tree | ea339e67a4814a04ada4c5c0a1c3cdfc2bc7b6fa /cpp06/ex02/A.hpp | |
| parent | 452e6bfa7bb4bca75dc4659bf9d707101b411977 (diff) | |
| download | piscine_cpp-6169d697a5be59426d034b878bffc848de49491d.tar.gz piscine_cpp-6169d697a5be59426d034b878bffc848de49491d.tar.bz2 piscine_cpp-6169d697a5be59426d034b878bffc848de49491d.zip | |
Added cpp06/ex01 and ex02
Diffstat (limited to 'cpp06/ex02/A.hpp')
| -rw-r--r-- | cpp06/ex02/A.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp06/ex02/A.hpp b/cpp06/ex02/A.hpp index 30c68d5..4738d7c 100644 --- a/cpp06/ex02/A.hpp +++ b/cpp06/ex02/A.hpp @@ -6,7 +6,7 @@ /* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/15 09:56:52 by charles #+# #+# */ -/* Updated: 2020/04/15 10:03:37 by charles ### ########.fr */ +/* Updated: 2020/11/18 09:22:09 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,6 +17,11 @@ class A : public Base { +public: + A(); + A(A const& other); + A& operator=(A const& other); + virtual ~A(); }; #endif |
