mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
13 lines
241 B
C++
13 lines
241 B
C++
#ifndef IDATABASEFACTORY_H
|
|
#define IDATABASEFACTORY_H
|
|
|
|
#include "Object.h"
|
|
#include "DatabaseInt.h"
|
|
|
|
class IDatabaseFactory : public IObject
|
|
{
|
|
public:
|
|
virtual IDatabaseInt *createDatabase(void)=0;
|
|
};
|
|
|
|
#endif //IDATABASEFACTORY_H
|