summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS3/jaws3/Event_Completer.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/apps/JAWS3/jaws3/Event_Completer.cpp
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/apps/JAWS3/jaws3/Event_Completer.cpp')
-rw-r--r--ACE/apps/JAWS3/jaws3/Event_Completer.cpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/ACE/apps/JAWS3/jaws3/Event_Completer.cpp b/ACE/apps/JAWS3/jaws3/Event_Completer.cpp
deleted file mode 100644
index 70df04e90fc..00000000000
--- a/ACE/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);
-}
-