v8toolkit  0.0.1
Utility library for embedding V8 Javascript engine in a c++ program
wrapped_class_base.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace v8toolkit {
4  // Inheriting from this gives hints to the system that you are a wrapped type
5  // However, it is not required, just simpler.
6  class WrappedClassBase {};
7 
8 }