diff --git a/src/frontend/cia_build_dialog.h b/src/frontend/cia_build_dialog.h index 7138adf..0f51023 100644 --- a/src/frontend/cia_build_dialog.h +++ b/src/frontend/cia_build_dialog.h @@ -1,27 +1,29 @@ -// Copyright 2021 threeSD Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include -#include -#include -#include "core/file_sys/cia_common.h" - -namespace Ui { -class CIABuildDialog; -} - -class CIABuildDialog : public QDialog { - Q_OBJECT - -public: - explicit CIABuildDialog(QWidget* parent, bool is_dir, bool is_nand, bool enable_legit, - const QString& default_path); - ~CIABuildDialog(); - - std::pair GetResults() const; - -private: - std::unique_ptr ui; - bool is_dir; -}; +// Copyright 2021 threeSD Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include +#include +#include +#include "core/file_sys/cia_common.h" + +namespace Ui { +class CIABuildDialog; +} + +class CIABuildDialog : public QDialog { + Q_OBJECT + +public: + explicit CIABuildDialog(QWidget* parent, bool is_dir, bool is_nand, bool enable_legit, + const QString& default_path); + ~CIABuildDialog(); + + std::pair GetResults() const; + +private: + std::unique_ptr ui; + bool is_dir; +};