summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1269_Regression/Server_Timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1269_Regression/Server_Timer.h')
-rw-r--r--TAO/tests/Bug_1269_Regression/Server_Timer.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/TAO/tests/Bug_1269_Regression/Server_Timer.h b/TAO/tests/Bug_1269_Regression/Server_Timer.h
deleted file mode 100644
index 23024cf8e4d..00000000000
--- a/TAO/tests/Bug_1269_Regression/Server_Timer.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * @file Server_Timer.h
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@atdesk.com>
- *
- */
-
-#ifndef Server_Timer__h_
-#define Server_Timer__h_
-#include /**/ "ace/pre.h"
-
-#include "TestC.h"
-#include "ace/Event_Handler.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-class Server_Timer : public ACE_Event_Handler
-{
-public:
- /// Constructor
- Server_Timer (Test::Echo_ptr echo, ACE_Reactor * reactor);
-
- void activate (void);
-
- /// Thread entry point
- int handle_timeout(ACE_Time_Value const & tv, void const *);
- int handle_close (ACE_HANDLE, ACE_Reactor_Mask);
-
-private:
- /// Reference to the test interface
- Test::Echo_var echo_;
-};
-
-#include /**/ "ace/post.h"
-#endif /* Server_Timer__h_ */