--- /dev/null
+#ifndef __NEURUN_GRAPH_OPERATION_RESHAPE_H__
+#define __NEURUN_GRAPH_OPERATION_RESHAPE_H__
+
+#include <memory>
+
+#include "graph/operation/Node.h"
+#include "internal/op/Reshape.h"
+
+namespace neurun
+{
+namespace graph
+{
+namespace operation
+{
+namespace Reshape
+{
+
+class Node : public graph::operation::Node
+{
+public:
+ Node(std::unique_ptr<::internal::tflite::op::Reshape::Node> &&op) : _op{std::move(op)} {}
+
+public:
+ virtual operand::IndexSet inputs() const override
+ {
+ return {_op->param().input_index, _op->param().shape_index};
+ }
+ virtual operand::IndexSet outputs() const override { return {_op->param().output_index}; }
+ virtual const ::internal::tflite::op::Node *op() const override { return _op.get(); }
+
+private:
+ std::unique_ptr<::internal::tflite::op::Reshape::Node> _op;
+};
+
+} // namespace Reshape
+} // namespace operation
+} // namespace graph
+} // namespace neurun
+
+#endif // __NEURUN_GRAPH_OPERATION_RESHAPE_H__