As Qt programs happen to live within their MainWindow class, I am having troubles altering the design components via a member class, that, because of inter-inclusion of headers leading to compilation errors.
MainWindow
class holding a EventManager
member object needs to have its design components modified in a method of EventManager
without having multi-inclusion issue, that considering that MainWindow
needs to include EventManager
to be able to hold it within its class as member.
What would be the best (programmatically speaking) method to achieve this goal ?