urbackup_backend/Interface/DatabaseInt.h
2011-11-08 21:52:33 +01:00

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