mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
14 lines
230 B
C++
14 lines
230 B
C++
#ifndef IDATABASECURSOR_H_
|
|
#define IDATABASECURSOR_H_
|
|
|
|
#include "Query.h"
|
|
|
|
class IDatabaseCursor
|
|
{
|
|
public:
|
|
virtual bool next(db_single_result &res)=0;
|
|
|
|
virtual bool has_error(void)=0;
|
|
};
|
|
|
|
#endif //IDATABASECURSOR_H_
|