summaryrefslogtreecommitdiff
path: root/apps/JAWS3/jaws3/Event_Completer.cpp
blob: 70df04e90fc277e069ead6a400ba4b4458c21f4b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// $Id$

#ifndef JAWS_BUILD_DLL
#define JAWS_BUILD_DLL
#endif

#include "jaws3/Event_Completer.h"

// Default do nothing completers.

JAWS_Event_Completer::~JAWS_Event_Completer (void)
{
}

void
JAWS_Event_Completer::default_complete (const JAWS_Event_Result &, void *)
{
}

void
JAWS_Event_Completer::accept_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}

void
JAWS_Event_Completer::connect_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}

void
JAWS_Event_Completer::input_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}

void
JAWS_Event_Completer::output_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}

void
JAWS_Event_Completer::timer_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}

void
JAWS_Event_Completer::lambda_complete (const JAWS_Event_Result &r, void *d)
{
  this->default_complete (r, d);
}