gestionale/argento/status.h

21 lines
244 B
C
Raw Permalink Normal View History

2020-09-19 23:18:10 +00:00
#pragma once
2019-08-06 13:33:11 +00:00
#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);
}