mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-02-09 21:28:30 -06:00
Make strings translatable, remove some more debug code, fix tests, reduce size of patch slightly, remove weird tooltip, don't crash when closing database, simplify code, fix filters, don't link agains pthread on Windows.
23 lines
314 B
C++
23 lines
314 B
C++
#ifndef TESTROWCACHE_H
|
|
#define TESTROWCACHE_H
|
|
|
|
#include <QObject>
|
|
|
|
class TestRowCache : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestRowCache();
|
|
~TestRowCache();
|
|
|
|
private slots:
|
|
void construction();
|
|
void setGet();
|
|
void insert();
|
|
void erase();
|
|
void smallestNonAvailableRange();
|
|
};
|
|
|
|
#endif
|