summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS3/jaws3/Event_Completer.h
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.h
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/apps/JAWS3/jaws3/Event_Completer.h')
-rw-r--r--ACE/apps/JAWS3/jaws3/Event_Completer.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/ACE/apps/JAWS3/jaws3/Event_Completer.h b/ACE/apps/JAWS3/jaws3/Event_Completer.h
deleted file mode 100644
index 6114605437d..00000000000
--- a/ACE/apps/JAWS3/jaws3/Event_Completer.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- c++ -*- */
-// $Id$
-
-#ifndef JAWS_EVENT_COMPLETER_H
-#define JAWS_EVENT_COMPLETER_H
-
-#include "jaws3/Export.h"
-#include "jaws3/Event_Result.h"
-
-class JAWS_Event_Completer;
-
-class JAWS_Export JAWS_Event_Completer
-// = TITLE
-// Event completion callback class.
-{
-public:
-
- virtual ~JAWS_Event_Completer (void);
-
- virtual void accept_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when input has been read.
-
- virtual void connect_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when input has been read.
-
- virtual void input_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when input has been read.
-
- virtual void output_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when output has been completely written.
-
- virtual void timer_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when timer has expired.
-
- virtual void lambda_complete (const JAWS_Event_Result &r, void *act = 0);
- // The callback entry point when a lambda event completes.
-
- virtual void default_complete (const JAWS_Event_Result &r, void *act = 0);
- // The defaul callback entry point when an event completes.
-
-};
-
-#endif /* JAWS_EVENT_COMPLETER_H */