mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-05 08:39:04 +00:00
add missing header guard
This commit is contained in:
@@ -1,27 +1,29 @@
|
|||||||
// Copyright 2021 threeSD Project
|
// Copyright 2021 threeSD Project
|
||||||
// Licensed under GPLv2 or any later version
|
// Licensed under GPLv2 or any later version
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include <memory>
|
#pragma once
|
||||||
#include <utility>
|
|
||||||
#include <QDialog>
|
#include <memory>
|
||||||
#include "core/file_sys/cia_common.h"
|
#include <utility>
|
||||||
|
#include <QDialog>
|
||||||
namespace Ui {
|
#include "core/file_sys/cia_common.h"
|
||||||
class CIABuildDialog;
|
|
||||||
}
|
namespace Ui {
|
||||||
|
class CIABuildDialog;
|
||||||
class CIABuildDialog : public QDialog {
|
}
|
||||||
Q_OBJECT
|
|
||||||
|
class CIABuildDialog : public QDialog {
|
||||||
public:
|
Q_OBJECT
|
||||||
explicit CIABuildDialog(QWidget* parent, bool is_dir, bool is_nand, bool enable_legit,
|
|
||||||
const QString& default_path);
|
public:
|
||||||
~CIABuildDialog();
|
explicit CIABuildDialog(QWidget* parent, bool is_dir, bool is_nand, bool enable_legit,
|
||||||
|
const QString& default_path);
|
||||||
std::pair<QString, Core::CIABuildType> GetResults() const;
|
~CIABuildDialog();
|
||||||
|
|
||||||
private:
|
std::pair<QString, Core::CIABuildType> GetResults() const;
|
||||||
std::unique_ptr<Ui::CIABuildDialog> ui;
|
|
||||||
bool is_dir;
|
private:
|
||||||
};
|
std::unique_ptr<Ui::CIABuildDialog> ui;
|
||||||
|
bool is_dir;
|
||||||
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user