mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
22 lines
393 B
10 years ago
|
#include "js_stream.h"
|
||
|
|
||
|
#include "async-wrap.h"
|
||
|
#include "env.h"
|
||
|
#include "env-inl.h"
|
||
|
#include "stream_base.h"
|
||
|
#include "v8.h"
|
||
|
|
||
|
namespace node {
|
||
|
|
||
|
using v8::Context;
|
||
|
using v8::Handle;
|
||
|
using v8::Object;
|
||
|
using v8::Value;
|
||
|
|
||
|
void JSStream::Initialize(Handle<Object> target,
|
||
|
Handle<Value> unused,
|
||
|
Handle<Context> context) {
|
||
|
}
|
||
|
|
||
|
} // namespace node
|