I work in Qt 4.7 and I have a piece of code with signals and slots. It is configured as normal as:
#include <QObject> //Earlier code... connect(my_thread, SIGNAL(started()), other_thread, SLOT(process())); connect(my_thread, SIGNAL(finished()), third_thread, SLOT(some_slot())); //Later code...
However, when I create it, it gives an error for every statement saying "C3861:" connect ": identifier not found" Does anyone have any ideas why this might be? Thanks!
source share