urbackup_backend/Interface/DatabaseInt.h
2015-01-08 22:31:54 +01:00

13 lines
277 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,
size_t allocation_chunk_size)=0;
};
#endif