#ifndef __converters_h__ #define __converters_h__ #include "convert_ruby.h" #include "convert_string.h" #include "convert_v8.h" #include typedef RubyValueSource > convert_rb_to_v8_t; typedef V8HandleSource convert_v8_to_rb_t; typedef RubyValueSource convert_rb_to_string_t; typedef V8HandleSource convert_v8_to_string_t; VALUE V82RB(v8::Handle& value); v8::Local RB2V8(VALUE value); std::string RB2String(VALUE value); std::string V82String(v8::Handle& value); #endif