summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Policy_Strategy.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-13 11:42:23 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2023-02-13 11:42:23 +0100
commit322d0a3e30d2e608108e0d7caf6bdcddbd728081 (patch)
treeb39a880512642221f2545276cc3f68c5e04a8ab1 /TAO/tao/PortableServer/Policy_Strategy.h
parent69fbec6c475060cf01a710a3d7ed6e756538858c (diff)
downloadATCD-322d0a3e30d2e608108e0d7caf6bdcddbd728081.tar.gz
Major cleanup in PortableServer library
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 */