summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/LifespanStrategyTransient.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/LifespanStrategyTransient.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/LifespanStrategyTransient.h')
-rw-r--r--TAO/tao/PortableServer/LifespanStrategyTransient.h27
1 files changed, 11 insertions, 16 deletions
diff --git a/TAO/tao/PortableServer/LifespanStrategyTransient.h b/TAO/tao/PortableServer/LifespanStrategyTransient.h
index 161994e964a..58092432668 100644
--- a/TAO/tao/PortableServer/LifespanStrategyTransient.h
+++ b/TAO/tao/PortableServer/LifespanStrategyTransient.h
@@ -27,40 +27,35 @@ namespace TAO
{
namespace Portable_Server
{
- class LifespanStrategyTransient
- : public LifespanStrategy
+ class LifespanStrategyTransient : public LifespanStrategy
{
public:
LifespanStrategyTransient ();
- virtual void notify_startup ();
+ void notify_startup () override;
- virtual void notify_shutdown ();
+ void notify_shutdown () override;
char key_type () const;
- virtual CORBA::Boolean is_persistent () const;
+ CORBA::Boolean is_persistent () const override;
- CORBA::ULong key_length () const;
+ CORBA::ULong key_length () const override;
- virtual void create_key (CORBA::Octet *buffer, CORBA::ULong& starting_at);
+ void create_key (CORBA::Octet *buffer, CORBA::ULong& starting_at) override;
- virtual
bool validate (CORBA::Boolean is_persistent,
- const TAO::Portable_Server::Temporary_Creation_Time& creation_time) const;
+ const TAO::Portable_Server::Temporary_Creation_Time& creation_time) const override;
/// Check the state of the POA.
- virtual void check_state ();
+ void check_state () override;
- virtual ::PortableServer::LifespanPolicyValue type() const;
+ bool use_imr () const override;
- virtual bool use_imr () const;
-
- virtual CORBA::Object_ptr imr_key_to_object (const TAO::ObjectKey &key,
- const char *type_id) const;
+ CORBA::Object_ptr imr_key_to_object (const TAO::ObjectKey &key, const char *type_id) const override;
private:
- TAO::Portable_Server::Creation_Time creation_time_;
+ TAO::Portable_Server::Creation_Time const creation_time_;
};
} /* namespace Portable_Server */
} /* namespace TAO */