summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h')
-rw-r--r--TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h23
1 files changed, 6 insertions, 17 deletions
diff --git a/TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h b/TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h
index 15e212c64ab..15831b56c31 100644
--- a/TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h
+++ b/TAO/tao/PortableServer/IdUniquenessStrategyMultiple.h
@@ -12,43 +12,32 @@
#define TAO_ID_UNIQUENESSSTRATEGY_MULITPLE_H
#include /**/ "ace/pre.h"
-#include "tao/PortableServer/portableserver_export.h"
+#include "tao/PortableServer/IdUniquenessStrategy.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-#include "tao/PortableServer/IdUniquenessStrategy.h"
-#include "ace/Service_Config.h"
-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Portable_Server
{
- class TAO_PortableServer_Export IdUniquenessStrategyMultiple
- : public IdUniquenessStrategy
+ class IdUniquenessStrategyMultiple : public IdUniquenessStrategy
{
public:
- virtual void strategy_init (TAO_Root_POA *poa);
+ void strategy_init (TAO_Root_POA *poa) override;
- virtual void strategy_cleanup ();
+ void strategy_cleanup () override;
- virtual bool is_servant_activation_allowed (
- PortableServer::Servant servant,
- bool &w);
+ bool is_servant_activation_allowed (PortableServer::Servant servant, bool &w) override;
- virtual bool allow_multiple_activations () const;
-
- virtual ::PortableServer::IdUniquenessPolicyValue type() const;
+ bool allow_multiple_activations () const override;
};
}
}
-ACE_STATIC_SVC_DECLARE_EXPORT (TAO_PortableServer, IdUniquenessStrategyMultiple)
-ACE_FACTORY_DECLARE (TAO_PortableServer, IdUniquenessStrategyMultiple)
-
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"