summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Policy_Strategy.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/Policy_Strategy.h')
-rw-r--r--TAO/tao/PortableServer/Policy_Strategy.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/TAO/tao/PortableServer/Policy_Strategy.h b/TAO/tao/PortableServer/Policy_Strategy.h
deleted file mode 100644
index 1acd9e71912..00000000000
--- a/TAO/tao/PortableServer/Policy_Strategy.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Policy_Strategy.h
- *
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-//=============================================================================
-
-#ifndef TAO_POLICY_STRATEGY_H
-#define TAO_POLICY_STRATEGY_H
-#include /**/ "ace/pre.h"
-
-#include "tao/orbconf.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Service_Object.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_Root_POA;
-
-namespace TAO
-{
- namespace Portable_Server
- {
- class Policy_Strategy
- : public ACE_Service_Object
- {
- public:
- virtual void strategy_init(TAO_Root_POA *poa) = 0;
-
- virtual void strategy_cleanup() = 0;
-
- virtual ~Policy_Strategy () {};
- };
- }
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-#endif /* TAO_POLICY_STRATEGY_H */