// -*- c++ -*- #pragma once #ifndef __RAYS_RUBY_COLOR_H__ #define __RAYS_RUBY_COLOR_H__ #include #include #include #include #include namespace Rays { Rucy::Class color_class (); // class Rays::Color }// Rays RUCY_DECLARE_VALUE_OR_ARRAY_FROM_TO(Rays::Color) namespace Rucy { template <> inline Class get_ruby_class () { return Rays::color_class(); } }// Rucy #endif//EOH