How to avoid an object of a class to be destroyed when going out of scope in a function
-
@stordd Either make that local variable a class member or allocate it on the heap (but then you have to make sure it is deleted when not needed anymore)...
Update: actually your server is not going out of scope as it is allocated on the heap. There must be something else wrong in your code. -
@stordd said in How to avoid an object of a class to be destroyed when going out of scope in a function:
when i add
TcpServer *server = new TcpServer();in my launchApp() function sometimes my program exi
I didn't say you should do that! This would make server a local variable (would shadow the class member called server) and thus would be wrong!
Please read more carefully.
What I said is: you do not have a local variable in your code, so this is not the source of your problem. It must be something else." sometimes my program exit in my slot getSNCS()" - of cource is does as now you're accessing a not initialised member variable server. So, do not do
TcpServer *server = new TcpServer();
this is correct
server = new TcpServer();
-
@jsulm It's weird I'm debugging step by step and when it'sdoing the
server.connectToSncs()
andserver.connectToNrs()
it goes to the moc_IHM.cpp atint IHM::qt_metacall()
and then go back to the main.cpp and get stuck on the linea.exec()
And my functions connectTosncs() and connectToNrs() are executing (I have some qDebug inside )