summaryrefslogtreecommitdiff
path: root/apps/JAWS3/jaws3/Event_Completer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS3/jaws3/Event_Completer.cpp')
-rw-r--r--apps/JAWS3/jaws3/Event_Completer.cpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/apps/JAWS3/jaws3/Event_Completer.cpp b/apps/JAWS3/jaws3/Event_Completer.cpp
deleted file mode 100644
index 70df04e90fc..00000000000
--- a/apps/JAWS3/jaws3/Event_Completer.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-// $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);
-}
-