node/src/node_file.h
Michaël Zasso 4abc896a82 src: replace usage of v8::Handle with v8::Local
v8::Handle is deprecated: https://codereview.chromium.org/1224623004

PR-URL: https://github.com/nodejs/io.js/pull/2202
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-09-06 21:38:05 +10:00

13 lines
198 B
C++

#ifndef SRC_NODE_FILE_H_
#define SRC_NODE_FILE_H_
#include "node.h"
#include "v8.h"
namespace node {
void InitFs(v8::Local<v8::Object> target);
} // namespace node
#endif // SRC_NODE_FILE_H_