memgraph/cypher/codegen/code.hpp

15 lines
128 B
C++
Raw Normal View History

2015-10-28 03:21:28 +08:00
#pragma once
#include <string>
#include <vector>
class Code
{
public:
private:
std::vector<std::string> buffer;
};