mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
18 lines
228 B
C++
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
|