summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Default_Acceptor_Filter.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/Default_Acceptor_Filter.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/Default_Acceptor_Filter.h')
-rw-r--r--TAO/tao/PortableServer/Default_Acceptor_Filter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/PortableServer/Default_Acceptor_Filter.h b/TAO/tao/PortableServer/Default_Acceptor_Filter.h
index c440b985c5d..0057e403b6a 100644
--- a/TAO/tao/PortableServer/Default_Acceptor_Filter.h
+++ b/TAO/tao/PortableServer/Default_Acceptor_Filter.h
@@ -41,18 +41,18 @@ class TAO_PortableServer_Export TAO_Default_Acceptor_Filter
: public TAO_Acceptor_Filter
{
public:
- TAO_Default_Acceptor_Filter ();
+ TAO_Default_Acceptor_Filter () = default;
/// Populate @a mprofile with all available endpoints.
- virtual int fill_profile (const TAO::ObjectKey &object_key,
+ int fill_profile (const TAO::ObjectKey &object_key,
TAO_MProfile &mprofile,
TAO_Acceptor **acceptors_begin,
TAO_Acceptor **acceptors_end,
- CORBA::Short priority = TAO_INVALID_PRIORITY);
+ CORBA::Short priority = TAO_INVALID_PRIORITY) override;
/// Encodes the endpoints in the profiles into the TAO_TAG_ENDPOINTS
/// tag component of profiles.
- int encode_endpoints (TAO_MProfile &mprofile);
+ int encode_endpoints (TAO_MProfile &mprofile) override;
};
TAO_END_VERSIONED_NAMESPACE_DECL