Dear all
What I mean is this Private is just wrapping a QList… and as Private is a struct, is there any need for this struct?
class BList : public BItem
{
. ..
protected:
struct Private
{
QList list;
} p;
};
Why not simply make list a member of BList?
Same comment applies to BInt::Private, etc…
— cheers atul
