When should someone use structs instead of classes or vice versa in C++? I find myself using structs when a full-blown class managing some information seems like overkill but want to indicate the information being contained are all related. I was wondering what are some good guidelines to be able to tell when one is more appropriate than the other?
Edit: Found these links while reading the material Stack Overflow indicated was related after the question was submitted:
http://stackoverflow.com/questions/54585/when-should-you-use-a-class-vs-a-struct-in-c http://stackoverflow.com/questions/92859/what-are-the-differences-between-struct-and-class-in-c http://stackoverflow.com/questions/85553/when-should-i-use-a-struct-instead-of-a-class