2017-02-04 16:01:15 +08:00
|
|
|
|
|
|
|
#include <storage/edge.hpp>
|
|
|
|
#include "database/creation_exception.hpp"
|
|
|
|
#include "database/graph_db.hpp"
|
2017-02-15 21:10:16 +08:00
|
|
|
//#include "snapshot/snapshoter.hpp"
|
2017-02-04 16:01:15 +08:00
|
|
|
|
2017-02-15 21:10:16 +08:00
|
|
|
GraphDb::GraphDb(const std::string &name, bool import_snapshot) : name_(name) {
|
|
|
|
// if (import_snapshot)
|
|
|
|
// snap_engine.import();
|
2017-02-04 16:01:15 +08:00
|
|
|
}
|