mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-11 09:36:37 +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
|