cpp06/ex02/Base.hpp

12 lines
109 B
C++

#ifndef BASE_HPP
#define BASE_HPP
#include <iostream>
class Base
{
public:
virtual ~Base();
};
#endif