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