mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
12 lines
244 B
C++
12 lines
244 B
C++
#ifndef IDATABASEINT_H
|
|
#define IDATABASEINT_H
|
|
|
|
#include "Database.h"
|
|
|
|
class IDatabaseInt : public IDatabase
|
|
{
|
|
public:
|
|
virtual bool Open(std::string pFile, const std::vector<std::pair<std::string,std::string> > &attach)=0;
|
|
};
|
|
|
|
#endif |