gestionale/argento/status.h

22 lines
271 B
C
Raw Normal View History

2019-08-06 13:33:11 +00:00
#ifndef STATUS_H
#define STATUS_H
#include <QStatusBar>
#include <QString>
2019-08-07 12:12:36 +00:00
#include "MainWindow.h"
2019-08-06 13:33:11 +00:00
namespace Ui {
enum StatusType {
INFO,
SUCCESS,
WARNING,
ERROR
};
void status(StatusType type, QString message);
}
#endif