summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ThreadStrategyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/ThreadStrategyFactory.h')
-rw-r--r--TAO/tao/PortableServer/ThreadStrategyFactory.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/TAO/tao/PortableServer/ThreadStrategyFactory.h b/TAO/tao/PortableServer/ThreadStrategyFactory.h
deleted file mode 100644
index bac43806fa1..00000000000
--- a/TAO/tao/PortableServer/ThreadStrategyFactory.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file ThreadStrategyFactory.h
- *
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-//=============================================================================
-
-#ifndef TAO_PORTABLESERVER_THREADPOLICYSTRATEGYFACTORY_H
-#define TAO_PORTABLESERVER_THREADPOLICYSTRATEGYFACTORY_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/PortableServer/StrategyFactory.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/PortableServer/ThreadPolicyC.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- class ThreadStrategy;
-
- class ThreadStrategyFactory
- : public StrategyFactory
- {
- public:
- /// Create a new servant retention strategy
- virtual ThreadStrategy *create (::PortableServer::ThreadPolicyValue value) = 0;
-
- /// Cleanup the given strategy instance
- virtual void destroy (ThreadStrategy *strategy) = 0;
- };
- }
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_PORTABLESERVER_THREADPOLICYSTRATEGYFACTORY_H */