Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2011-07-27 05:37:21 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-07-27 05:59:33 +0400
commit187fe27a6e7da9d1f5ec9896af51a16c69d4c6c2 (patch)
tree2a72a34d8abdcc18607ce4d78b0ee70af4117721 /src/handle_wrap.h
parentde261713bfdffece3a5675fcf325dbcca7542e87 (diff)
stdio binding + javascript to enable process.stdin.listen()
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index 8329da04170..1637607049c 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -32,6 +32,7 @@ class HandleWrap {
HandleWrap(v8::Handle<v8::Object> object, uv_handle_t* handle);
virtual ~HandleWrap();
+ virtual void SetHandle(uv_handle_t* h);
virtual void StateChange() {}
v8::Persistent<v8::Object> object_;