~yolanda.robla/ubuntu/trusty/nodejs/add_distribution

« back to all changes in this revision

Viewing changes to src/pipe_wrap.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2013-08-14 00:16:46 UTC
  • mfrom: (7.1.40 sid)
  • Revision ID: package-import@ubuntu.com-20130814001646-bzlysfh8sd6mukbo
Tags: 0.10.15~dfsg1-4
* Update 2005 patch, adding a handful of tests that can fail on
  slow platforms.
* Add 1004 patch to fix test failures when writing NaN to buffer
  on mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#ifndef PIPE_WRAP_H_
23
23
#define PIPE_WRAP_H_
24
 
#include <stream_wrap.h>
 
24
#include "stream_wrap.h"
25
25
 
26
26
namespace node {
27
27
 
29
29
 public:
30
30
  uv_pipe_t* UVHandle();
31
31
 
 
32
  static v8::Local<v8::Object> Instantiate();
32
33
  static PipeWrap* Unwrap(v8::Local<v8::Object> obj);
33
34
  static void Initialize(v8::Handle<v8::Object> target);
34
35