summaryrefslogtreecommitdiff
path: root/TAO/tao/CORBANAME_Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/CORBANAME_Parser.h')
-rw-r--r--TAO/tao/CORBANAME_Parser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/CORBANAME_Parser.h b/TAO/tao/CORBANAME_Parser.h
index 6937d5b4df8..e218da06434 100644
--- a/TAO/tao/CORBANAME_Parser.h
+++ b/TAO/tao/CORBANAME_Parser.h
@@ -39,17 +39,17 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_CORBANAME_Parser : public TAO_IOR_Parser
{
public:
- /// The destructor
- virtual ~TAO_CORBANAME_Parser ();
+ TAO_CORBANAME_Parser () = default;
+ ~TAO_CORBANAME_Parser () override = default;
// = The IOR_Parser methods, please read the documentation in
// IOR_Parser.h
- virtual bool match_prefix (const char *ior_string) const;
- virtual CORBA::Object_ptr parse_string (const char *ior,
- CORBA::ORB_ptr orb);
+ bool match_prefix (const char *ior_string) const override;
+ CORBA::Object_ptr parse_string (const char *ior,
+ CORBA::ORB_ptr orb) override;
private:
- virtual CORBA::Object_ptr
+ CORBA::Object_ptr
parse_string_dynamic_request_helper (CORBA::Object_ptr naming_context,
ACE_CString &key_string);
};