Sha256: cd117c9efd640cb6589ecbf7184e4d5f6927695238ffd11d2753057ae3edeb2a
Contents?: true
Size: 440 Bytes
Versions: 18
Compression:
Stored size: 440 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __RAYS_RUBY_POINT_H__ #define __RAYS_RUBY_POINT_H__ #include <rucy/class.h> #include <rucy/extension.h> #include <rays/point.h> RUCY_DECLARE_VALUE_OR_ARRAY_FROM_TO(Rays::Point) namespace Rays { Rucy::Class point_class (); // class Rays::Point }// Rays namespace Rucy { template <> inline Class get_ruby_class<Rays::Point> () { return Rays::point_class(); } }// Rucy #endif//EOH
Version data entries
18 entries across 18 versions & 1 rubygems