Hi there guys. I have this abstract class below.
Qt Code:
  1. class Page : public QObject
  2. {
  3. Q_OBJECT
  4. public:
  5. explicit Page(QObject *parent = 0);
  6. virtual void start_downloading() = 0;
  7. signals:
  8. void done();
  9. public slots:
  10.  
  11. };
To copy to clipboard, switch view to plain text mode 
As you can see that there is a signal Page::done() in the class. I have a bunch of concrete classes that inherit this class and the concrete classes will emit the signal Page::done() above. I have a separate class that works with the concrete classes and problem is connecting the above signal to any slot and I suppose its because the signal exists in an abstract class. Is there a way of connecting this signal.