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.
27 lines
472 B
27 lines
472 B
#include "connect_wrap.h"
|
|
|
|
#include "env.h"
|
|
#include "env-inl.h"
|
|
#include "req-wrap.h"
|
|
#include "req-wrap-inl.h"
|
|
#include "util.h"
|
|
#include "util-inl.h"
|
|
|
|
namespace node {
|
|
|
|
using v8::Local;
|
|
using v8::Object;
|
|
|
|
|
|
ConnectWrap::ConnectWrap(Environment* env,
|
|
Local<Object> req_wrap_obj,
|
|
AsyncWrap::ProviderType provider) : ReqWrap(env, req_wrap_obj, provider) {
|
|
Wrap(req_wrap_obj, this);
|
|
}
|
|
|
|
|
|
ConnectWrap::~ConnectWrap() {
|
|
ClearWrap(object());
|
|
}
|
|
|
|
} // namespace node
|
|
|