File indexing completed on 2024-05-12 16:35:54

0001 /* This file is part of the KDE project
0002    Copyright (C) 2006 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
0003    Copyright (C) 2010 Marijn Kruisselbrink <mkruisselbrink@kde.org>
0004 
0005    This program is free software; you can redistribute it and/or modify
0006    it under the terms of the GNU General Public License as published by
0007    the Free Software Foundation; either version 2 of the License, or
0008    (at your option) any later version.
0009 
0010    This program is distributed in the hope that it will be useful,
0011    but WITHOUT ANY WARRANTY; without even the implied warranty of
0012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013    GNU General Public License for more details.
0014 
0015    You should have received a copy of the GNU General Public License
0016    along with this program; if not, write to the Free Software
0017    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
0018    MA  02110-1301  USA
0019 */
0020 #ifndef CALLIGRA_SHEETS_RTREE_BENCHMARK_H
0021 #define CALLIGRA_SHEETS_RTREE_BENCHMARK_H
0022 
0023 #include <QObject>
0024 #include "RTree.h"
0025 
0026 namespace Calligra
0027 {
0028 namespace Sheets
0029 {
0030 
0031 class RTreeBenchmark : public QObject
0032 {
0033     Q_OBJECT
0034 private Q_SLOTS:
0035     void init();
0036     void cleanup();
0037 
0038     void testInsertionPerformance();
0039     void testRowInsertionPerformance();
0040     void testColumnInsertionPerformance();
0041     void testRowDeletionPerformance();
0042     void testColumnDeletionPerformance();
0043     void testLookupPerformance();
0044 private:
0045     RTree<double> m_tree;
0046 };
0047 
0048 } // namespace Sheets
0049 } // namespace Calligra
0050 
0051 #endif // CALLIGRA_SHEETS_RTREE_BENCHMARK_H