mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 00:39:59 +00:00
25 lines
312 B
C++
25 lines
312 B
C++
|
#ifndef CSV_DOC_STARTUP_H
|
||
|
#define CSV_DOC_STARTUP_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace CSVDoc
|
||
|
{
|
||
|
class StartupDialogue : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
StartupDialogue();
|
||
|
|
||
|
signals:
|
||
|
|
||
|
void createDocument();
|
||
|
|
||
|
void loadDocument();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|