summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2023-02-14 09:05:54 +0100
committerGitHub <noreply@github.com>2023-02-14 09:05:54 +0100
commit54406e2ff1e39a3245d04253648153d5f4751938 (patch)
tree2c92b2450e6872403cdd50b43ff764da236ffb12 /TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h
parent69fbec6c475060cf01a710a3d7ed6e756538858c (diff)
parentd19030946af88f57a4b2b29af9228cbbf0386a71 (diff)
downloadATCD-54406e2ff1e39a3245d04253648153d5f4751938.tar.gz
Merge pull request #2050 from jwillemsen/jwi-portableserverstrategysimplify
Major cleanup in PortableServer library
Diffstat (limited to 'TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h')
-rw-r--r--TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h b/TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h
deleted file mode 100644
index 8c869ab0ab9..00000000000
--- a/TAO/tao/PortableServer/IdUniquenessStrategyFactoryImpl.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file IdUniquenessStrategyFactoryImpl.h
- *
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-//=============================================================================
-
-#ifndef TAO_PORTABLESERVER_IDUNIQUENESSSTRATEGYFACTORYIMPL_H
-#define TAO_PORTABLESERVER_IDUNIQUENESSSTRATEGYFACTORYIMPL_H
-#include /**/ "ace/pre.h"
-
-#include "tao/PortableServer/portableserver_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Service_Config.h"
-#include "tao/PortableServer/IdUniquenessStrategyFactory.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace Portable_Server
- {
- class TAO_PortableServer_Export IdUniquenessStrategyFactoryImpl
- : public IdUniquenessStrategyFactory
- {
- public:
- /// Create a new servant retention strategy
- virtual IdUniquenessStrategy* create (::PortableServer::IdUniquenessPolicyValue value);
-
- virtual void destroy (IdUniquenessStrategy *strategy);
- };
- }
-}
-
-ACE_STATIC_SVC_DECLARE (IdUniquenessStrategyFactoryImpl)
-ACE_FACTORY_DECLARE (TAO_PortableServer, IdUniquenessStrategyFactoryImpl)
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-#endif /* TAO_PORTABLESERVER_IDUNIQUENESSSTRATEGYFACTORYIMPL_H */