productinfo.h 338 B

1234567891011121314151617181920
  1. #ifndef PRODUCTINFO_H
  2. #define PRODUCTINFO_H
  3. #include <QtGui/QDialog>
  4. #include "ui_productinfo.h"
  5. class ProductInfo : public QDialog
  6. {
  7. Q_OBJECT
  8. public:
  9. ProductInfo(QString title, QString longDescription, QString price, QWidget *parent = 0);
  10. ~ProductInfo();
  11. private:
  12. Ui::ProductInfoClass ui;
  13. };
  14. #endif // PRODUCTINFO_H