Hey,
I have a bit of a problem. I have a class that uses C libraries to make a TCP connection, which is accomplished with the connect() function. Now, I'd like to use this class in a Qt program and make it inherit QObject. The problem is, since I need signals and slots, I inherit the connect() function from QObject, which overrides the C function, therefore causing problems while compiling.
So, is there a way to make an explicit call to the "TCP" connect()?