File indexing completed on 2024-04-28 04:20:03

0001 /*
0002     SPDX-FileCopyrightText: 2022 Friedrich W. H. Kossebau <kossebau@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef KODASKANNA_SCANRESULT_P_HPP
0008 #define KODASKANNA_SCANRESULT_P_HPP
0009 
0010 // Qt
0011 #include <QByteArray>
0012 #include <QSharedData>
0013 #include <QString>
0014 
0015 namespace Kodaskanna
0016 {
0017 
0018 class ScanResultPrivate : public QSharedData
0019 {
0020 public:
0021     QString text;
0022     QByteArray bytes;
0023     bool isSuccess = false;
0024 };
0025 
0026 }
0027 
0028 #endif