diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-06 21:00:29 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-06 21:00:29 -0600 |
commit | bc55542a602637ea4169b084c1b78aada0382ee7 (patch) | |
tree | 07def4734d0608e97b0172eed104d7de068e32c4 /ui/qt5/pkgdefaults.hh | |
parent | d3728b38b12b2f9762ba26fc6fc302cb79f7ee6c (diff) | |
download | horizon-bc55542a602637ea4169b084c1b78aada0382ee7.tar.gz horizon-bc55542a602637ea4169b084c1b78aada0382ee7.tar.bz2 horizon-bc55542a602637ea4169b084c1b78aada0382ee7.tar.xz horizon-bc55542a602637ea4169b084c1b78aada0382ee7.zip |
Qt UI: Implement UI.Packages.Choices requirements
Diffstat (limited to 'ui/qt5/pkgdefaults.hh')
-rw-r--r-- | ui/qt5/pkgdefaults.hh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/qt5/pkgdefaults.hh b/ui/qt5/pkgdefaults.hh new file mode 100644 index 0000000..08288ed --- /dev/null +++ b/ui/qt5/pkgdefaults.hh @@ -0,0 +1,23 @@ +/* + * pkgdefaults.hh - Definition of the UI.Packages.Choices page + * horizon-qt5, the Qt 5 user interface for + * Project Horizon + * + * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved. + * This code is licensed under the AGPL 3.0 license, as noted in the + * LICENSE-code file in the root directory of this repository. + * + * SPDX-License-Identifier: AGPL-3.0-only + */ + +#ifndef PKGDEFAULTS_HH +#define PKGDEFAULTS_HH + +#include "horizonwizardpage.hh" + +class PkgDefaultsPage : public HorizonWizardPage { +public: + PkgDefaultsPage(QWidget *parent = nullptr); +}; + +#endif /* !PKGDEFAULTS_HH */ |