summaryrefslogtreecommitdiff
path: root/apps/JAWS/server/JAWS_Pipeline.cpp
blob: f2ea3ecfbe9fe6097231e7e716e0f8f2fb8d4474 (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
28
29
// $Id$

#include "JAWS_Pipeline.h"

ACE_RCSID(server, JAWS_Pipeline, "$Id$")

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"