I want to built a private class in another class like
class CBigBrother{
class CPocketOfBigBrother{
CPen Pen1,Pen2;
}
Write(CPocketOfBigBrother PocketLocal);
CPocketOfBigBrother Pocket;
}
CBigBrother::Write(CPocketOfBigBrother PocketLocal){
if (PocketLocal.Pen1.Color==red){
...
};
};
Greetings Andreas
class CBigBrother{
class CPocketOfBigBrother{
CPen Pen1,Pen2;
}
Write(CPocketOfBigBrother PocketLocal);
CPocketOfBigBrother Pocket;
}
CBigBrother::Write(CPocketOfBigBrother PocketLocal){
if (PocketLocal.Pen1.Color==red){
...
};
};
Greetings Andreas