summaryrefslogtreecommitdiff
path: root/src/node_stdio.h
blob: 97a6140de59580814dde47f4eb44ac54205e6d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef node_stdio_h
#define node_stdio_h

#include <node.h>
#include <v8.h>

namespace node {

class Stdio  {
public:
  static void Initialize (v8::Handle<v8::Object> target);
  static void Flush ();
  static void DisableRawMode(int fd);
};

}  // namespace node
#endif  // node_stdio_h