source: trunk/FACT++/src/InterpreterV8.h@ 20023

Last change on this file since 20023 was 20023, checked in by tbretz, 4 years ago
This adds a version that was tested at least with V8 6.8 and a wrapper to switch between both -- using ifdefs in the code is not reaonable as there would be too many.
File size: 144 bytes
Line 
1#ifdef HAVE_V8
2#include <v8-version.h>
3
4#if V8_MAJOR_VERSION < 4
5#include "InterpreterV8-3.h"
6#else
7#include "InterpreterV8-4.h"
8#endif
9
10#endif
Note: See TracBrowser for help on using the repository browser.