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

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

namespace node {

class OS {
public:
  static void Initialize (v8::Handle<v8::Object> target);
};


}  // namespace node

#endif  // node_os_h