summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS/server/JAWS_Pipeline.cpp
blob: 7f947037257ced9e8bb5048aab9b19420c8b4bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "JAWS_Pipeline.h"

JAWS_Pipeline::JAWS_Pipeline ()
{
}

int
JAWS_Pipeline::open (void *)
{
  // Simply call into the virtual svc() method.
  if (this->svc () == -1)
    ACE_ERROR_RETURN ((LM_ERROR,
                       "%p\n",
                       "JAWS_Pipeline::svc"),
                      -1);
  return 0;
}

int
JAWS_Pipeline::close (u_long)
{
  return 0;
}

#include "JAWS_Pipeline_Handler.cpp"