mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
16 lines
154 B
C++
16 lines
154 B
C++
#include <stdio.h>
|
|
#include <v8.h>
|
|
|
|
namespace rr {
|
|
|
|
/**
|
|
* Represents an outgoing reference to
|
|
*/
|
|
class Stub {
|
|
Stub();
|
|
};
|
|
|
|
class Scion {
|
|
Scion();
|
|
};
|
|
}
|