memgraph/src/query/repl.hpp
Teon Banek 6427902920 Extract distributed interpretation out of Interpreter
Reviewers: mtomic, mferencevic, msantl, buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1560
2018-08-27 09:31:39 +02:00

17 lines
361 B
C++

#pragma once
#include "database/graph_db.hpp"
namespace query {
class Interpreter;
/**
* Read Evaluate Print Loop, for interacting with a database (the database in
* the given database::GraphDb). Immediately starts the user-input loop and
* interprets the entered queries.
*/
void Repl(database::GraphDb *, query::Interpreter *);
} // namespace query