12345678910111213141516171819202122232425 |
- #ifndef QFDALERT_H
- #define QFDALERT_H
- #include <dbService/ClassSet.h>
- #include <QObject>
- class QFDAlert : public QObject
- {
- Q_OBJECT
- public:
- typedef enum
- {
- None,
- Info,
- Success,
- Alert,
- Error,
- } QFDAlertType;
- static void showAlertWithCode(int code, QWidget *w);
- };
- #endif // QFDALERT_H
|