Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / PortableServer / LifespanStrategyTransient.h
blob580924326682a526a114246c5f83e0a33bf25868
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file LifespanStrategyTransient.h
7 * @author Johnny Willemsen <jwillemsen@remedy.nl>
8 */
9 //=============================================================================
11 #ifndef TAO_LIFESPANSTRATEGYTRANSIENT_H
12 #define TAO_LIFESPANSTRATEGYTRANSIENT_H
13 #include /**/ "ace/pre.h"
15 #include "tao/PortableServer/LifespanStrategy.h"
17 #if !defined (ACE_LACKS_PRAGMA_ONCE)
18 # pragma once
19 #endif /* ACE_LACKS_PRAGMA_ONCE */
21 #include "tao/PortableServer/Creation_Time.h"
22 #include "tao/Object_KeyC.h"
24 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
26 namespace TAO
28 namespace Portable_Server
30 class LifespanStrategyTransient : public LifespanStrategy
32 public:
33 LifespanStrategyTransient ();
35 void notify_startup () override;
37 void notify_shutdown () override;
39 char key_type () const;
41 CORBA::Boolean is_persistent () const override;
43 CORBA::ULong key_length () const override;
45 void create_key (CORBA::Octet *buffer, CORBA::ULong& starting_at) override;
47 bool validate (CORBA::Boolean is_persistent,
48 const TAO::Portable_Server::Temporary_Creation_Time& creation_time) const override;
50 /// Check the state of the POA.
51 void check_state () override;
53 bool use_imr () const override;
55 CORBA::Object_ptr imr_key_to_object (const TAO::ObjectKey &key, const char *type_id) const override;
57 private:
58 TAO::Portable_Server::Creation_Time const creation_time_;
60 } /* namespace Portable_Server */
61 } /* namespace TAO */
63 TAO_END_VERSIONED_NAMESPACE_DECL
65 #include /**/ "ace/post.h"
66 #endif /* TAO_LIFESPANSTRATEGYTRANSIENT_H */