Warning, file /graphics/krita/libs/image/tiles3/tests/kis_swapped_data_store_test.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002  *  SPDX-FileCopyrightText: 2010 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef KIS_SWAPPED_DATA_STORE_TEST_H
0007 #define KIS_SWAPPED_DATA_STORE_TEST_H
0008 
0009 #include <simpletest.h>
0010 
0011 class KisTileData;
0012 class KisSwappedDataStore;
0013 
0014 class KisSwappedDataStoreTest : public QObject
0015 {
0016     Q_OBJECT
0017 
0018 private:
0019     void processTileData(qint32 column, KisTileData *td, KisSwappedDataStore &store);
0020 
0021 private Q_SLOTS:
0022     void testRoundTrip();
0023     void testRandomAccess();
0024 
0025 };
0026 
0027 #endif /* KIS_SWAPPED_DATA_STORE_TEST_H */
0028