I'm analysing a code and encountered the following structure. Whats the relation of Class1 and Class2? (the project has been developed on Qt framework).
Simpilified Code:
class Class1
{
...
private:
class Class2
}
class Class1::Class2: public BaseClass
{
...
}
Thanks for any help.