21788d003a
Summary: Dressipi CRUD queries are dummy implemented; Fixes T99 and T131 Test Plan: manual Reviewers: sale Subscribers: buda, sale Maniphest Tasks: T131, T99 Differential Revision: https://memgraph.phacility.com/D9
21 lines
456 B
C++
21 lines
456 B
C++
#pragma once
|
|
|
|
#include "communication/communication.hpp"
|
|
#include "database/db.hpp"
|
|
#include "database/db_accessor.hpp"
|
|
#include "query/strip/stripped.hpp"
|
|
|
|
template <typename Stream>
|
|
class IPlanCPU
|
|
{
|
|
public:
|
|
virtual bool run(Db &db, plan_args_t &args, Stream &stream) = 0;
|
|
virtual ~IPlanCPU() {}
|
|
};
|
|
|
|
template <typename Stream>
|
|
using produce_t = IPlanCPU<Stream> *(*)();
|
|
|
|
template <typename Stream>
|
|
using destruct_t = void (*)(IPlanCPU<Stream> *);
|