Is it possible in c++ to modify a member of a class A that "surrounds" the class B (is in the "upper" scope) besides using a reference of the "surrounding class"?
code is here: http://pastebin.com/iEEu9iZG
The goal is to modify the GFullScreen
variable with the same value of the fullscreen variable. I know that I can pass a pointer of GFullScreen
or a reference of the whole Game class.. Is there another way to access to it? which one is more efficient?
No. It would have broken encapsulation horribly. And reference would have needed to be stored somewhere anyway, implicitly or explicitly - how else could you remember this relation?