mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
9 lines
154 B
C
9 lines
154 B
C
|
// fake qmessagebox.h
|
||
|
|
||
|
class QMessageBox
|
||
|
{
|
||
|
public:
|
||
|
enum Icon { Information, Warning, Critical };
|
||
|
static void *standardIcon(Icon) { return 0; }
|
||
|
};
|