nextcloud-desktop/src/mirall/syncjournaldb.h

52 lines
1.2 KiB
C
Raw Normal View History

/*
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#ifndef SYNCJOURNALDB_H
#define SYNCJOURNALDB_H
#include <QObject>
#include <QSqlDatabase>
namespace Mirall {
class SyncJournalFileRecord;
class SyncJournalDb : public QObject
{
Q_OBJECT
public:
explicit SyncJournalDb(const QString& path, QObject *parent = 0);
SyncJournalFileRecord getFileRecord( const QString& filename );
bool setFileRecord( const SyncJournalFileRecord& record );
bool deleteFileRecord( const QString& filename );
int getFileRecordCount();
QSqlDatabase *getDB(){ return &_db; }
bool exists();
bool checkConnect();
2013-10-04 22:29:42 +04:00
qint64 getPHash(const QString& ) const;
2013-10-03 20:52:02 +04:00
signals:
public slots:
private:
QSqlDatabase _db;
QString _dbFile;
};
} // namespace Mirall
#endif // SYNCJOURNALDB_H