memgraph/database/db.hpp
2015-10-11 20:59:27 +02:00

18 lines
283 B
C++

#ifndef MEMGRAPH_DATABASE_DB_HPP
#define MEMGRAPH_DATABASE_DB_HPP
#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;
};
#endif