Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / apps / JAWS / server / JAWS_Pipeline.cpp
blob7f947037257ced9e8bb5048aab9b19420c8b4bd0
1 #include "JAWS_Pipeline.h"
3 JAWS_Pipeline::JAWS_Pipeline ()
7 int
8 JAWS_Pipeline::open (void *)
10 // Simply call into the virtual svc() method.
11 if (this->svc () == -1)
12 ACE_ERROR_RETURN ((LM_ERROR,
13 "%p\n",
14 "JAWS_Pipeline::svc"),
15 -1);
16 return 0;
19 int
20 JAWS_Pipeline::close (u_long)
22 return 0;
25 #include "JAWS_Pipeline_Handler.cpp"