diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2008-03-04 13:56:48 +0000 |
commit | c4078c377d74290ebe4e66da0b4975da91732376 (patch) | |
tree | 1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/apps/JAWS3/jaws3/Event_Completer.cpp | |
parent | 700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff) | |
download | ATCD-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.cpp | 55 |
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); -} - |