#ifndef QFDALERT_H #define QFDALERT_H #include #include 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