udp_wrap: use proper imports in source file

pull/24504/head
Ben Noordhuis 2013-02-13 15:54:17 +01:00
parent b1b7b4e4e8
commit 2d069c5210
1 changed files with 12 additions and 2 deletions

View File

@ -31,10 +31,20 @@
#define SLAB_SIZE (1024 * 1024)
using namespace v8;
namespace node {
using v8::Arguments;
using v8::Function;
using v8::FunctionTemplate;
using v8::Handle;
using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::Persistent;
using v8::String;
using v8::Value;
typedef ReqWrap<uv_udp_send_t> SendWrap;
// see tcp_wrap.cc