blastrecordfactory.cpp 182 B

12345678910
  1. #include "blastrecordfactory.h"
  2. BlastRecordFactory::BlastRecordFactory()
  3. {
  4. }
  5. QWidget *BlastRecordFactory::createPage(QWidget *parent) const
  6. {
  7. return new BlastRecord(parent);
  8. }