Quote Originally Posted by wysota View Post
From what I understand you have a declaration like the following somewhere:

Qt Code:
  1. extern SomeClass obj;
To copy to clipboard, switch view to plain text mode 
where SomeClass inherits QObject. So I suggest to use a pointer to the object instead of the object itself, so that you can create the object and assign it to the pointer after the application object is created.
I understand a bit what you meaning, but not everything. Can you give an example?