Files
node-v0.x-archive/src/node_stdio.h
Ryan 17c6a67f15 Introduce node.stdio
Remove old stdout, stderr, stdin objects.
2009-08-24 21:20:26 +02:00

18 lines
228 B
C++

#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