File indexing completed on 2024-05-05 05:48:52

0001 /*
0002     SPDX-FileCopyrightText: 2018 Andrius Štikonas <andrius@stikonas.eu>
0003 
0004     SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #ifndef KPMCORE_OPERATION_P_H
0008 #define KPMCORE_OPERATION_P_H
0009 
0010 #include "ops/operation.h"
0011 
0012 class OperationPrivate
0013 {
0014 public:
0015     Operation::OperationStatus m_Status;
0016     QList<Job*> m_Jobs;
0017     qint32 m_ProgressBase;
0018 };
0019 
0020 #endif