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>
13 lines
198 B
C++
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_
|