summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-06-14 12:34:39 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-06-14 12:34:39 +0000
commit6411cfb4558b590cd5638686b86b589c8cb2295e (patch)
tree3752b3a419a2d95c256a7a1edbcefd3ba60b3bd2
parentd5a164e5007c7a722a30061353d9c7c34e164299 (diff)
downloadATCD-6411cfb4558b590cd5638686b86b589c8cb2295e.tar.gz
ChangeLogTag: Tue Jun 14 12:31:00 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/Makefile.am1
-rw-r--r--ace/Reactor_Timer_Interface.cpp11
-rw-r--r--ace/Reactor_Timer_Interface.h2
-rw-r--r--ace/ace.mpc1
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