cpp06/ex02/B.hpp

10 lines
84 B
C++

#ifndef B_HPP
#define B_HPP
#include "Base.hpp"
class B: public Base
{
};
#endif