diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-06-14 12:34:39 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-06-14 12:34:39 +0000 |
commit | 40bfe7a4ce664b2d6e3c098078646da705e0ccea (patch) | |
tree | 3752b3a419a2d95c256a7a1edbcefd3ba60b3bd2 /ace | |
parent | f2d38bf2fccebe966bd3726e2ae7d661f087849b (diff) | |
download | ATCD-40bfe7a4ce664b2d6e3c098078646da705e0ccea.tar.gz |
ChangeLogTag: Tue Jun 14 12:31:00 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Makefile.am | 1 | ||||
-rw-r--r-- | ace/Reactor_Timer_Interface.cpp | 11 | ||||
-rw-r--r-- | ace/Reactor_Timer_Interface.h | 2 | ||||
-rw-r--r-- | ace/ace.mpc | 1 |
4 files changed, 14 insertions, 1 deletions
diff --git a/ace/Makefile.am b/ace/Makefile.am index 925427b6c3e..1782d42c1df 100644 --- a/ace/Makefile.am +++ b/ace/Makefile.am @@ -222,6 +222,7 @@ libACE_la_SOURCES = \ Reactor.cpp \ Reactor_Impl.cpp \ Reactor_Notification_Strategy.cpp \ + Reactor_Timer_Interface.cpp \ Read_Buffer.cpp \ Recursive_Thread_Mutex.cpp \ Recyclable.cpp \ diff --git a/ace/Reactor_Timer_Interface.cpp b/ace/Reactor_Timer_Interface.cpp new file mode 100644 index 00000000000..ea457c207a9 --- /dev/null +++ b/ace/Reactor_Timer_Interface.cpp @@ -0,0 +1,11 @@ +// $Id$ + +#include "ace/Reactor_Timer_Interface.h" + +ACE_RCSID (ace, + Reactor_Timer_Interface, + "$Id$") + +ACE_Reactor_Timer_Interface::~ACE_Reactor_Timer_Interface() +{ +} diff --git a/ace/Reactor_Timer_Interface.h b/ace/Reactor_Timer_Interface.h index 72e195c59f2..625299a5560 100644 --- a/ace/Reactor_Timer_Interface.h +++ b/ace/Reactor_Timer_Interface.h @@ -32,7 +32,7 @@ class ACE_Export ACE_Reactor_Timer_Interface { public: - virtual ~ACE_Reactor_Timer_Interface (void) {} + virtual ~ACE_Reactor_Timer_Interface (void); virtual long schedule_timer (ACE_Event_Handler *event_handler, const void *arg, diff --git a/ace/ace.mpc b/ace/ace.mpc index 2f3bc86944f..47010510bbb 100644 --- a/ace/ace.mpc +++ b/ace/ace.mpc @@ -196,6 +196,7 @@ project(ACE) : acedefaults, core, other, codecs, token, svcconf, uuid, filecache Reactor.cpp Reactor_Impl.cpp Reactor_Notification_Strategy.cpp + Reactor_Timer_Interface.cpp Read_Buffer.cpp Recursive_Thread_Mutex.cpp Recyclable.cpp |