summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Oneways/Session_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Oneways/Session_Task.h')
-rw-r--r--TAO/tests/Big_Oneways/Session_Task.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/tests/Big_Oneways/Session_Task.h b/TAO/tests/Big_Oneways/Session_Task.h
deleted file mode 100644
index 6f73ee069b0..00000000000
--- a/TAO/tests/Big_Oneways/Session_Task.h
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// $Id$
-//
-
-#ifndef BIG_ONEWAYS_SESSION_TASK_H
-#define BIG_ONEWAYS_SESSION_TASK_H
-#include /**/ "ace/pre.h"
-
-#include "ace/Task.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-class Session;
-
-/// Implement a Task to run the experiments using multiple threads.
-class Session_Task : public ACE_Task_Base
-{
-public:
- /// Constructor
- Session_Task (Session *session);
-
- /// Thread entry point
- int svc (void);
-
-private:
- /// Reference to the test interface
- Session *session_;
-};
-
-#include /**/ "ace/post.h"
-#endif /* BIG_ONEWAYS_SESSION_TASK_H */