I am using a designer..and I was curious whether one could make a signal slot connection without making a instance of a object but declaring a object..

MyObj *obj;
connect(obj,SIGNAL(),this,SLOT());

obj=new MyObj();


just curious whether this would be valid