cpp06/ex02/C.hpp

10 lines
84 B
C++

#ifndef C_HPP
#define C_HPP
#include "Base.hpp"
class C: public Base
{
};
#endif