mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 13:53:53 +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
|