#ifndef RR_ARRAY #define RR_ARRAY namespace rr { class Array : public Ref { public: static void Init(); static VALUE New(int argc, VALUE argv[], VALUE self); static VALUE Length(VALUE self); static VALUE CloneElementAt(VALUE self, VALUE index); inline Array(v8::Isolate* isolate, v8::Handle array) : Ref(isolate, array) {} inline Array(VALUE value) : Ref(value) {} }; } #endif