diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-17 23:40:52 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-17 23:40:52 +0000 |
commit | 6c5f30940e888f6b810419f72099f852fed4746c (patch) | |
tree | b0b4a4cf6f41641c7cfe7cd000aa48aa9caa4872 /tests/Future_Test.cpp | |
parent | f365f9dfd0d5b8cc8b467787f78a69be4a948c67 (diff) | |
download | ATCD-6c5f30940e888f6b810419f72099f852fed4746c.tar.gz |
.
Diffstat (limited to 'tests/Future_Test.cpp')
-rw-r--r-- | tests/Future_Test.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/Future_Test.cpp b/tests/Future_Test.cpp index bd17ea4aa57..5eaeccd9899 100644 --- a/tests/Future_Test.cpp +++ b/tests/Future_Test.cpp @@ -206,12 +206,9 @@ class Method_Request_end : public ACE_Method_Request // Reification of the <end> method. public: Method_Request_end (Prime_Scheduler *new_Prime_Scheduler) - : scheduler_ (new_Prime_Scheduler) {} - virtual ~Method_Request_end (void) {} - virtual int call (void) { - this->scheduler_->close (); - return -1; - } + : scheduler_ (new_Prime_Scheduler); + virtual ~Method_Request_end (void); + virtual int call (void); private: Prime_Scheduler *scheduler_; |