memgraph/query_engine/query_result.hpp

16 lines
219 B
C++
Raw Normal View History

#pragma once
#include <string>
2016-02-11 06:34:49 +08:00
#include <memory>
class QueryResult
{
public:
2016-02-11 06:34:49 +08:00
using sptr = std::shared_ptr<QueryResult>;
QueryResult(std::string result) :
result(result) {}
std::string result;
};