mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-14 04:29:04 +03:00
21 lines
554 B
Objective-C
21 lines
554 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "include/cef_base.h"
|
|
#import "include/cef_v8.h"
|
|
|
|
namespace v8_extensions {
|
|
|
|
class OnigRegExp : public CefV8Handler {
|
|
public:
|
|
OnigRegExp();
|
|
|
|
virtual bool Execute(const CefString& name,
|
|
CefRefPtr<CefV8Value> object,
|
|
const CefV8ValueList& arguments,
|
|
CefRefPtr<CefV8Value>& retval,
|
|
CefString& exception) OVERRIDE;
|
|
|
|
// Provide the reference counting implementation for this class.
|
|
IMPLEMENT_REFCOUNTING(OnigRegExp);
|
|
};
|
|
|
|
} |