Files
42_INT_09_piscine_cpp/d03/test_inheritance/Base.hpp
2022-02-20 19:42:37 +01:00

20 lines
311 B
C++

#ifndef BASE_HPP
# define BASE_HPP
#include <iostream>
class Base {
public:
Base( void ); // default/parametric constructor
Base( Base const & src ); // copy constructor
~Base( void ); // destructor
Base & operator=( Base const & rhs ); // assignement operator
Base(int i);
};
#endif