cpp06/ex02/A.hpp

10 lines
84 B
C++

#ifndef A_HPP
#define A_HPP
#include "Base.hpp"
class A: public Base
{
};
#endif