#include #include #include "query/util.hpp" #include "query/plan_interface.hpp" #include "storage/model/properties/all.hpp" #include "storage/edge_x_vertex.hpp" #include "using.hpp" using std::cout; using std::endl; // Query: class CPUPlan : public PlanInterface { public: bool run(Db &db, const PlanArgsT &args, Stream &stream) override { } ~CPUPlan() {} }; extern "C" PlanInterface* produce() { return new CPUPlan(); } extern "C" void destruct(PlanInterface* p) { delete p; }