Can someone give me an example about how to define a new type of struct in a class in C++.
Thanks.
Something like this:
class Class { // visibility will default to private unless you specify it struct Struct { //specify members here; }; };