Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Created November 5, 2015 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagomg/12c80f9116231502e210 to your computer and use it in GitHub Desktop.
Save thiagomg/12c80f9116231502e210 to your computer and use it in GitHub Desktop.
Ciclic dependency problem
#include "window.h"
#include "main_window.h"
void window::close() {
//Closing window stuff...
if( msgbox::inform("Really?") ) {
cout << "Closing window" << endl;
_parent.inform_closed(this);
} else {
cout << "Thanks for this 2nd chance!" << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment