ich moechte mehrere plot widgets in einem fenster darstellen. Nur wie??? Aus der QT doku werd ich nicht schlau...
Code:
int main(int argc, char **argv)
{
QApplication a(argc, argv);
Plot plot;
a.setMainWidget(&plot);
plot.resize(500, 300);
plot.show();
return a.exec();
}

.text+0x557): undefined reference to `Plot::Plot(QWidget*, char const*, int)'