File indexing completed on 2025-02-16 04:22:51
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Alexander Stippich <a.stippich@gmx.net> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0005 */ 0006 0007 #ifndef KSANE_INTERNAL_OPTION_H 0008 #define KSANE_INTERNAL_OPTION_H 0009 0010 #include "baseoption.h" 0011 #include "option.h" 0012 0013 namespace KSaneCore 0014 { 0015 0016 class InternalOption : public Option 0017 { 0018 Q_OBJECT 0019 0020 public: 0021 0022 explicit InternalOption(BaseOption *option, QObject *parent = nullptr); 0023 0024 }; 0025 0026 } // namespace KSaneCore 0027 0028 #endif // KSANE_INTERNAL_OPTION_H 0029