gestionale/argento/status.h

22 lines
271 B
C++

#ifndef STATUS_H
#define STATUS_H
#include <QStatusBar>
#include <QString>
#include "MainWindow.h"
namespace Ui {
enum StatusType {
INFO,
SUCCESS,
WARNING,
ERROR
};
void status(StatusType type, QString message);
}
#endif