Files
memgraph/src/query/console.hpp
Mislav Bradac 6068a95a0e Move dbms to database
Summary:
There was only two files in dbms directory so I moved them to database
directory.

Reviewers: buda

Reviewed By: buda

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D540
2017-07-12 12:44:11 +02:00

24 lines
433 B
C++

//
// Copyright 2017 Memgraph
// Created by Florijan Stamenkovic on 23.03.17.
//
#pragma once
#include <list>
#include "communication/result_stream_faker.hpp"
#include "database/dbms.hpp"
namespace query {
/**
* Read Evaluate Print Loop,
* for interacting with a database
* (the active database in the given DBMS).
* Immediately starts the user-input loop
* and interprets the entered queries.
*/
void Repl(Dbms &dbms);
}