#ifndef GUARD_RTGLIB_OPERAND_HPP #define GUARD_RTGLIB_OPERAND_HPP #include #include namespace rtg { struct argument { void* data; shape s; }; struct operand { std::string name; std::function)> compute_shape; std::function)> compute; }; } #endif