mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-29 01:56:06 +00:00
18 lines
479 B
C++
18 lines
479 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#include "progress.h"
|
||
|
|
|
||
|
|
namespace QtCommon::Frontend {
|
||
|
|
|
||
|
|
QtProgressDialog::QtProgressDialog(const QString&,
|
||
|
|
const QString&,
|
||
|
|
int,
|
||
|
|
int,
|
||
|
|
QObject* parent,
|
||
|
|
Qt::WindowFlags)
|
||
|
|
: QObject(parent)
|
||
|
|
{}
|
||
|
|
|
||
|
|
}
|