summaryrefslogtreecommitdiffstats
path: root/src/tools/qlalr/compress.h
blob: 99f790348abf3127aac6e4f16e9411d428ce26f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef COMPRESS_H
#define COMPRESS_H

#include <QtCore/qlist.h>

class Compress
{
public:
  Compress ();

  void operator () (int *table, int row_count, int column_count);

public:
    QList<int> index;
    QList<int> info;
    QList<int> check;
};

#endif // COMPRESS_H