i have a a couple c++ interfaces like this:
struct IThese {
virtual void doThesethings() = 0;
}
struct IThose : public IThese {
virtual void doThoseOtherThings() = 0;
}
Notice that IThose implement their own method, but also implements those from the other interface, so the idea is that implementors of IThose will need to implement both
Question: do i need to redeclare doThesethings in IThose?
if not, what would happen if i did it? would it shadow the IThese method?