1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/name.h
2015-07-10 19:17:06 -05:00

15 lines
258 B
C++

//mode -*- c++ -*-
#ifndef NAME_H
#define NAME_H
namespace rr {
class Name : public Ref<v8::Name> {
public:
static void Init();
static VALUE GetIdentityHash(VALUE self);
Name(VALUE self) : Ref<v8::Name>(self) {}
};
}
#endif /* NAME_H */