Sha256: 3485c8df791238b8e2685c1af340a0f48cda062660f3eba28394f489631a23b3
Contents?: true
Size: 417 Bytes
Versions: 15
Compression:
Stored size: 417 Bytes
Contents
#ifndef OR_VARIABLE_DEFINED_H_ #define OR_VARIABLE_DEFINED_H_ #include "ruby.h" #include "octave-includes.h" class OR_Variable { private: VALUE ruby_val; octave_value octave_val; public: OR_Variable(VALUE r) : ruby_val(r) { }; OR_Variable(octave_value o) : octave_val(o) { }; ~OR_Variable(); VALUE to_ruby(); octave_value to_octave(); }; #endif /* OR_VARIABLE_DEFINED_H_ */
Version data entries
15 entries across 15 versions & 2 rubygems