mirror of
https://github.com/obhq/obliteration.git
synced 2024-11-27 05:00:24 +00:00
13 lines
178 B
C++
13 lines
178 B
C++
#pragma once
|
|
|
|
#include <QWizard>
|
|
|
|
class InitializeWizard : public QWizard {
|
|
public:
|
|
InitializeWizard();
|
|
~InitializeWizard();
|
|
|
|
public:
|
|
int nextId() const override;
|
|
};
|