xale-db 1.0
minimal SQL engine, written in c++
Loading...
Searching...
No Matches
IStorageEngine.h
Go to the documentation of this file.
1#ifndef STORAGE_I_STORAGE_ENGINE_H
2#define STORAGE_I_STORAGE_ENGINE_H
3
5
6namespace Xale::Storage
7{
12 {
13 public:
14 virtual bool startup() = 0;
15 virtual void shutdown() = 0;
16 };
17}
18
19#endif // STORAGE_I_STORAGE_ENGINE_H
Interface for storage engine operations.
Definition IStorageEngine.h:12
Definition BinaryFileManager.h:13