Add the ICharacter interface and an implementation
authorLukas Jiriste <ljiriste@student.42prague.com>
Fri, 25 Oct 2024 13:51:26 +0000 (15:51 +0200)
committerLukas Jiriste <ljiriste@student.42prague.com>
Fri, 25 Oct 2024 13:56:08 +0000 (15:56 +0200)
commit806c2734cd45f8964e12f59b39cd56380919de88
tree411209b183c79187f4bb4ce96adf16af67ef4e4a
parent62abcf68da91f64c4e3d89be41db9d82ba9d63e7
Add the ICharacter interface and an implementation

Again there is a conversation to be head about the privatization of
assignment operator and copy constructor.
Assignment is not possible as the name is const.
Copy constructor has implementation provided.
ex03/Character.cpp [new file with mode: 0644]
ex03/Character.h [new file with mode: 0644]
ex03/ICharacter.h [new file with mode: 0644]