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