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:
authorRyan <ry@tinyclouds.org>2009-08-24 22:25:24 +0400
committerRyan <ry@tinyclouds.org>2009-08-24 23:20:26 +0400
commit17c6a67f15944962f27326072d9ea2df40ec0491 (patch)
tree3484088236696332fea28bdc300f3a02b02ea22c /src/node_stdio.h
parent0727fcc9edb35d1ce7fc9e3759e9755e78f7129a (diff)
Introduce node.stdio
Remove old stdout, stderr, stdin objects.
Diffstat (limited to 'src/node_stdio.h')
-rw-r--r--src/node_stdio.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/node_stdio.h b/src/node_stdio.h
new file mode 100644
index 00000000000..cfd473f2817
--- /dev/null
+++ b/src/node_stdio.h
@@ -0,0 +1,17 @@
+#ifndef node_stdio_h
+#define node_stdio_h
+
+#include "node.h"
+
+#include <v8.h>
+#include <evcom.h>
+
+namespace node {
+
+class Stdio {
+public:
+ static void Initialize (v8::Handle<v8::Object> target);
+};
+
+} // namespace node
+#endif