mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
ccc9d80015
This was a poorly implemented hack when we executed the reverse geo lookup in the main thread and opening a V2 file could take a very long time. We need to do the "Welcome" message quite differently. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
15 lines
236 B
C++
15 lines
236 B
C++
#ifndef TESTPARSE_H
|
|
#define TESTPARSE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestParse : public QObject{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testParseCSV();
|
|
void testParseV2NoQuestion();
|
|
void testParseV3();
|
|
void testParseCompareOutput();
|
|
};
|
|
|
|
#endif
|