Objects hierarchy ?
C / C++ / MFC
2
Posts
1
Posters
19
Views
1
Watching
-
This is what I understand from the above: 1.
MainWindow_Bluetooth
is a class that contains various properties includingm_settings
. When instantiatedm_settings
is set to point to a newSettingsDialog
. 2.SD
is a pointer to a newSettingsDialog
. No idea where it is created or why, since this appears to be a duplicate ofm_settings
. 3. In thecloseEvent
ofSettingsDialog
you create some text and pass it tom_TAB_Connect
, presumably to be displayed somewhere. It is not possible to say whether this is called bySD
orm_settings
since other parts of the code are not present.