QFDAlert.h 353 B

12345678910111213141516171819202122232425
  1. #ifndef QFDALERT_H
  2. #define QFDALERT_H
  3. #include <dbService/ClassSet.h>
  4. #include <QObject>
  5. class QFDAlert : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. typedef enum
  10. {
  11. None,
  12. Info,
  13. Success,
  14. Alert,
  15. Error,
  16. } QFDAlertType;
  17. static void showAlertWithCode(int code, QWidget *w);
  18. };
  19. #endif // QFDALERT_H