mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
15 lines
360 B
C++
15 lines
360 B
C++
#ifndef SERVERWIZARD_H
|
|
#define SERVERWIZARD_H
|
|
|
|
#ifdef BUILD_WFSERVER
|
|
|
|
#include <QString>
|
|
|
|
namespace serverwizard {
|
|
// Runs the interactive setup wizard. Returns 0 on success (settings saved),
|
|
// non-zero on cancellation or error. settingsFile may be empty.
|
|
int run(const QString& settingsFile);
|
|
}
|
|
|
|
#endif // BUILD_WFSERVER
|
|
#endif // SERVERWIZARD_H
|