mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 22:50:18 +00:00

Partition test/addons-napi into test/js-native-api and test/node-api to isolate the Node.js-agnostic portion of the N-API tests from the Node.js-specific portion. PR-URL: https://github.com/nodejs/node/pull/24557 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
27 lines
848 B
C++
27 lines
848 B
C++
#ifndef TEST_JS_NATIVE_API_6_OBJECT_WRAP_MYOBJECT_H_
|
|
#define TEST_JS_NATIVE_API_6_OBJECT_WRAP_MYOBJECT_H_
|
|
|
|
#include <js_native_api.h>
|
|
|
|
class MyObject {
|
|
public:
|
|
static void Init(napi_env env, napi_value exports);
|
|
static void Destructor(napi_env env, void* nativeObject, void* finalize_hint);
|
|
|
|
private:
|
|
explicit MyObject(double value_ = 0);
|
|
~MyObject();
|
|
|
|
static napi_value New(napi_env env, napi_callback_info info);
|
|
static napi_value GetValue(napi_env env, napi_callback_info info);
|
|
static napi_value SetValue(napi_env env, napi_callback_info info);
|
|
static napi_value PlusOne(napi_env env, napi_callback_info info);
|
|
static napi_value Multiply(napi_env env, napi_callback_info info);
|
|
static napi_ref constructor;
|
|
double value_;
|
|
napi_env env_;
|
|
napi_ref wrapper_;
|
|
};
|
|
|
|
#endif // TEST_JS_NATIVE_API_6_OBJECT_WRAP_MYOBJECT_H_
|