summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/IdAssignmentPolicy.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/IdAssignmentPolicy.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/IdAssignmentPolicy.h')
-rw-r--r--TAO/tao/PortableServer/IdAssignmentPolicy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/PortableServer/IdAssignmentPolicy.h b/TAO/tao/PortableServer/IdAssignmentPolicy.h
index 82686e026dc..e7c4f4c21d0 100644
--- a/TAO/tao/PortableServer/IdAssignmentPolicy.h
+++ b/TAO/tao/PortableServer/IdAssignmentPolicy.h
@@ -43,19 +43,19 @@ namespace TAO
public:
IdAssignmentPolicy (::PortableServer::IdAssignmentPolicyValue value);
- CORBA::Policy_ptr copy ();
+ CORBA::Policy_ptr copy () override;
- void destroy ();
+ void destroy () override;
- ::PortableServer::IdAssignmentPolicyValue value ();
+ ::PortableServer::IdAssignmentPolicyValue value () override;
- CORBA::PolicyType policy_type ();
+ CORBA::PolicyType policy_type () override;
/// Return the cached policy type for this policy.
- virtual TAO_Cached_Policy_Type _tao_cached_type () const;
+ TAO_Cached_Policy_Type _tao_cached_type () const override;
/// Returns the scope at which this policy can be applied. See orbconf.h.
- virtual TAO_Policy_Scope _tao_scope () const;
+ TAO_Policy_Scope _tao_scope () const override;
private:
::PortableServer::IdAssignmentPolicyValue value_;