node-srt/src/node-srt.h
2020-06-13 00:57:57 +02:00

11 lines
No EOL
309 B
C++

#include <napi.h>
class NodeSRT : public Napi::ObjectWrap<NodeSRT> {
public:
static Napi::Object Init(Napi::Env env, Napi::Object exports);
NodeSRT(const Napi::CallbackInfo& info);
private:
static Napi::FunctionReference constructor;
Napi::Value Hello(const Napi::CallbackInfo& info);
};