1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/v8_ref.h
2009-12-07 16:06:06 +02:00

23 lines
No EOL
425 B
C

#ifndef _RUBY_V8_REF_
#define _RUBY_V8_REF_
#include <v8.h>
//the v8_ref wraps a v8 handle so that ruby can hold a reference to it.
struct v8_ref {
//takes a handle object and adds a new persistent handle for
//the referenced object
v8_ref(v8::Handle<void> object);
virtual ~v8_ref();
v8::Persistent<void> handle;
};
//memory management
void v8_ref_mark(v8_ref* ref);
void v8_ref_free(v8_ref* ref);
#endif