au milieu des tests d'heritance de classe

This commit is contained in:
Hugo LAMY
2022-02-20 19:42:37 +01:00
parent 7e65467a27
commit 8918b348e0
10 changed files with 188 additions and 26 deletions

View File

@@ -10,7 +10,7 @@ class ClapTrap {
public:
ClapTrap( std::string name ); // default/parametric constructor
ClapTrap( std::string name );
ClapTrap( ClapTrap const & src ); // copy constructor
~ClapTrap( void ); // destructor
@@ -42,6 +42,7 @@ protected:
private:
void assignValues(ClapTrap & src);
static int _totalNumber;
};