Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / PortableServer / ImplicitActivationStrategy.h
blobf1491cf66645f86d5bc43944a6fc9c724bda6ab2
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file ImplicitActivationStrategy.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
8 */
9 //=============================================================================
11 #ifndef TAO_ACTIVATION_STRATEGY_H
12 #define TAO_ACTIVATION_STRATEGY_H
13 #include /**/ "ace/pre.h"
15 #include "tao/orbconf.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
18 # pragma once
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
23 namespace TAO
25 namespace Portable_Server
27 class ImplicitActivationStrategy
29 public:
30 ImplicitActivationStrategy () = default;
31 virtual ~ImplicitActivationStrategy () = default;
33 virtual bool allow_implicit_activation () const = 0;
38 TAO_END_VERSIONED_NAMESPACE_DECL
40 #include /**/ "ace/post.h"
41 #endif /* TAO_ACTIVATION_STRATEGY_H */