Welcome to mirror list, hosted at ThFree Co, Russian Federation.

js_stream.h « src - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a2d3bfb4fc18e9cc9b5f19ed6092c81f88c8c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SRC_JS_STREAM_H_
#define SRC_JS_STREAM_H_

#include "async-wrap.h"
#include "env.h"
#include "stream_base.h"
#include "v8.h"

namespace node {

class JSStream : public StreamBase {
 public:
  static void Initialize(v8::Handle<v8::Object> target,
                         v8::Handle<v8::Value> unused,
                         v8::Handle<v8::Context> context);
};

}  // namespace node

#endif  // SRC_JS_STREAM_H_