QFDAlert.h 201 B

1234567891011121314
  1. #ifndef QFDALERT_H
  2. #define QFDALERT_H
  3. #include <QObject>
  4. class QFDAlert : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. static void showAlertWithCode(int code, QWidget *w);
  9. };
  10. #endif // QFDALERT_H