mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00: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
|