cbpporter Messages: 1427 Registered: September 2007
Ultimate Contributor
Well in modern C++ the difference between struct and class is pretty much trivial and related to default access rights: members in structs are public by default and members in classes are private by default.
C++ has a lot of duplicate features, so I tend to allays use only class to avoid it. But it makes no difference, use the one you like better, just don't mix and match in inheritance trees .