Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git] / ACE / apps / JAWS3 / jaws3 / Event_Completer.cpp
blob40a6ba6d473f08b003d62e5dbd5e6340a46dddcf
1 #ifndef JAWS_BUILD_DLL
2 #define JAWS_BUILD_DLL
3 #endif
5 #include "jaws3/Event_Completer.h"
7 // Default do nothing completers.
9 JAWS_Event_Completer::~JAWS_Event_Completer ()
13 void
14 JAWS_Event_Completer::default_complete (const JAWS_Event_Result &, void *)
18 void
19 JAWS_Event_Completer::accept_complete (const JAWS_Event_Result &r, void *d)
21 this->default_complete (r, d);
24 void
25 JAWS_Event_Completer::connect_complete (const JAWS_Event_Result &r, void *d)
27 this->default_complete (r, d);
30 void
31 JAWS_Event_Completer::input_complete (const JAWS_Event_Result &r, void *d)
33 this->default_complete (r, d);
36 void
37 JAWS_Event_Completer::output_complete (const JAWS_Event_Result &r, void *d)
39 this->default_complete (r, d);
42 void
43 JAWS_Event_Completer::timer_complete (const JAWS_Event_Result &r, void *d)
45 this->default_complete (r, d);
48 void
49 JAWS_Event_Completer::lambda_complete (const JAWS_Event_Result &r, void *d)
51 this->default_complete (r, d);