Hi
lets say i Have:
class A {
public:
class B {
};
};
is there any difference between that public nested class an just a regular B class which is defined in its own cpp file, except for the face that A::B must be used in the first option?
Thanks!