transform d03 ex01 assignation function in case of two constructors, tests of assignation and copy operation not successful

This commit is contained in:
Hugo LAMY
2022-02-19 12:01:43 +01:00
parent 817fac957b
commit 7e65467a27
10 changed files with 104 additions and 23 deletions

View File

@@ -9,11 +9,15 @@ class ScavTrap : public ClapTrap {
public:
ScavTrap(std::string name);
~ScavTrap();
ScavTrap(std::string name);
void guardGate();
private:
void assignValues( ScavTrap & src);
};
#endif