mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
18 lines
207 B
C
18 lines
207 B
C
![]() |
#ifndef RR_EQUIV
|
||
|
#define RR_EQUIV
|
||
|
|
||
|
namespace rr {
|
||
|
|
||
|
class Equiv {
|
||
|
public:
|
||
|
Equiv(VALUE val) : value(val) {}
|
||
|
inline operator VALUE() { return value; }
|
||
|
|
||
|
protected:
|
||
|
VALUE value;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|