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

connect_wrap.cc « src - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1d34c11a70b4217cca6f6e5f512ec45c7e24089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "connect_wrap.h"
#include "req_wrap-inl.h"

namespace node {

using v8::Local;
using v8::Object;

class Environment;

ConnectWrap::ConnectWrap(Environment* env,
    Local<Object> req_wrap_obj,
    AsyncWrap::ProviderType provider) : ReqWrap(env, req_wrap_obj, provider) {
}

}  // namespace node