15 lines
222 B
C++
15 lines
222 B
C++
#pragma once
|
|
|
|
#include "storage/graph.hpp"
|
|
#include "transactions/engine.hpp"
|
|
#include "transactions/commit_log.hpp"
|
|
|
|
class Db
|
|
{
|
|
public:
|
|
using sptr = std::shared_ptr<Db>;
|
|
|
|
Graph graph;
|
|
tx::Engine tx_engine;
|
|
};
|