Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / ACE / apps / JAWS2 / JAWS / Pipeline.cpp
blobb6a3dc93c9f039b61e01e1f4490ecd29ada97108
1 #include "JAWS/Pipeline.h"
5 JAWS_Pipeline::JAWS_Pipeline (void)
9 int
10 JAWS_Pipeline::open (void *)
12 // Simply call into the virtual svc() method.
13 if (this->svc () == -1)
14 ACE_ERROR_RETURN ((LM_ERROR,
15 "%p\n",
16 "JAWS_Pipeline::svc"),
17 -1);
18 return 0;
21 int
22 JAWS_Pipeline::close (u_long)
24 return 0;