// -*- c++ -*- #pragma once #ifndef __RAYS_RUBY_COLOR_SPACE_H__ #define __RAYS_RUBY_COLOR_SPACE_H__ #include #include #include #include namespace Rays { Rucy::Class color_space_class (); // class Rays::ColorSpace }// Rays RUCY_DECLARE_VALUE_FROM_TO(Rays::ColorSpace) namespace Rucy { template <> inline Class get_ruby_class () { return Rays::color_space_class(); } }// Rucy #endif//EOH