summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS3/jaws3/Timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS3/jaws3/Timer.h')
-rw-r--r--ACE/apps/JAWS3/jaws3/Timer.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/ACE/apps/JAWS3/jaws3/Timer.h b/ACE/apps/JAWS3/jaws3/Timer.h
index 9f00ed5a75d..a59f5ef14c3 100644
--- a/ACE/apps/JAWS3/jaws3/Timer.h
+++ b/ACE/apps/JAWS3/jaws3/Timer.h
@@ -18,7 +18,6 @@ class JAWS_Export JAWS_Timer_Impl
// RHS of the Bridge pattern.
{
public:
-
virtual ~JAWS_Timer_Impl (void) {}
virtual void schedule_timer ( long *timer_id
@@ -44,7 +43,6 @@ public:
virtual void cancel_timer (long timer_id) = 0;
// Cancel a timer.
-
};
@@ -54,7 +52,6 @@ class JAWS_Export JAWS_Timer
// Bridge pattern.
{
public:
-
JAWS_Timer (JAWS_Timer_Impl *impl = 0);
static JAWS_Timer * instance (void)
@@ -83,9 +80,7 @@ public:
void cancel_timer (long timer_id);
private:
-
JAWS_Timer_Impl *impl_;
-
};