summaryrefslogtreecommitdiff
path: root/apps/JAWS/server/JAWS_Pipeline.cpp
blob: 77fb54c6e48736360e62a9eaf3c485c96c47f399 (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
26
27
// $Id$

#include "JAWS_Pipeline.h"

JAWS_Pipeline::JAWS_Pipeline (void)
{
}

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"