1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
3 | |
4 | #ifndef COMPRESS_H |
5 | #define COMPRESS_H |
6 | |
7 | #include <QtCore/qlist.h> |
8 | |
9 | class Compress |
10 | { |
11 | public: |
12 | Compress (); |
13 | |
14 | void operator () (int *table, int row_count, int column_count); |
15 | |
16 | public: |
17 | QList<int> index; |
18 | QList<int> info; |
19 | QList<int> check; |
20 | }; |
21 | |
22 | #endif // COMPRESS_H |
23 |