summaryrefslogtreecommitdiff
path: root/ace/XtReactor.h
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-28 10:51:19 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-28 10:51:19 +0000
commitc2520148fb06f7e9f7e01b1133ac0e6adff23a66 (patch)
tree7ba887ea1646c02c1268fecb48d70dc790c230f2 /ace/XtReactor.h
parentca5eab11f02f85f329ebc35d00844ff8ba3c5b06 (diff)
downloadATCD-c2520148fb06f7e9f7e01b1133ac0e6adff23a66.tar.gz
Removed redundant trailing comma from all instances of ACE_UMIMPLEMENTED_FUNC.
Diffstat (limited to 'ace/XtReactor.h')
-rw-r--r--ace/XtReactor.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/ace/XtReactor.h b/ace/XtReactor.h
index 806e075cd25..7d6f3d5187e 100644
--- a/ace/XtReactor.h
+++ b/ace/XtReactor.h
@@ -5,13 +5,13 @@
//
// = LIBRARY
// ace
-//
+//
// = FILENAME
// XtReactor.h
//
// = AUTHOR
// Eric C. Newton's <ecn@clark.net> and Douglas C. Schmidt <schmidt@cs.wustl.edu>
-//
+//
// ============================================================================
#if !defined (ACE_XTREACTOR_H)
@@ -36,53 +36,53 @@ class ACE_XtReactor : public ACE_Select_Reactor
public:
// = Initialization and termination methods.
ACE_XtReactor (XtAppContext context,
- size_t size = DEFAULT_SIZE,
- int restart = 0,
+ size_t size = DEFAULT_SIZE,
+ int restart = 0,
ACE_Sig_Handler * = 0);
virtual ~ACE_XtReactor (void);
XtAppContext context (void);
// = Timer operations.
- virtual long schedule_timer (ACE_Event_Handler *handler,
+ virtual long schedule_timer (ACE_Event_Handler *handler,
const void *arg,
- const ACE_Time_Value &delta_time,
+ const ACE_Time_Value &delta_time,
const ACE_Time_Value &interval);
virtual int cancel_timer (ACE_Event_Handler *handler,
int dont_call_handle_close = 1);
- virtual int cancel_timer (long timer_id,
+ virtual int cancel_timer (long timer_id,
const void **arg = 0,
int dont_call_handle_close = 1);
protected:
// = Register timers/handles with Xt.
- virtual int register_handler_i (ACE_HANDLE handle,
+ virtual int register_handler_i (ACE_HANDLE handle,
ACE_Event_Handler *handler,
ACE_Reactor_Mask mask);
// Register a single <handler>.
- virtual int register_handler_i (const ACE_Handle_Set &handles,
- ACE_Event_Handler *handler,
+ virtual int register_handler_i (const ACE_Handle_Set &handles,
+ ACE_Event_Handler *handler,
ACE_Reactor_Mask mask);
// Register a set of <handlers>.
- virtual int remove_handler_i (ACE_HANDLE handle,
+ virtual int remove_handler_i (ACE_HANDLE handle,
ACE_Reactor_Mask mask);
// Remove the <handler> associated with this <handle>.
- virtual int remove_handler_i (const ACE_Handle_Set &handles,
+ virtual int remove_handler_i (const ACE_Handle_Set &handles,
ACE_Reactor_Mask);
// Remove a set of <handles>.
virtual int wait_for_multiple_events (ACE_Select_Reactor_Handle_Set &,
- ACE_Time_Value *);
+ ACE_Time_Value *);
// Wait for events to occur.
- virtual int XtWaitForMultipleEvents (int,
+ virtual int XtWaitForMultipleEvents (int,
ACE_Select_Reactor_Handle_Set &,
- ACE_Time_Value *);
+ ACE_Time_Value *);
XtAppContext context_;
struct ACE_XtReactorID *ids_;
@@ -96,8 +96,8 @@ private:
static void TimerCallbackProc (XtPointer closure, XtIntervalId *id);
static void InputCallbackProc (XtPointer closure, int* source, XtInputId *id);
- ACE_UNIMPLEMENTED_FUNC (ACE_XtReactor (const ACE_XtReactor &));
- ACE_UNIMPLEMENTED_FUNC (ACE_XtReactor &operator = (const ACE_XtReactor &));
+ ACE_UNIMPLEMENTED_FUNC (ACE_XtReactor (const ACE_XtReactor &))
+ ACE_UNIMPLEMENTED_FUNC (ACE_XtReactor &operator = (const ACE_XtReactor &))
// Deny access since member-wise won't work...
};
#endif /* ACE_HAS_XT */