summaryrefslogtreecommitdiff
path: root/TAO/tao/CORBALOC_Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/CORBALOC_Parser.h')
-rw-r--r--TAO/tao/CORBALOC_Parser.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/CORBALOC_Parser.h b/TAO/tao/CORBALOC_Parser.h
index 9ce93163da0..d0c26d36f0f 100644
--- a/TAO/tao/CORBALOC_Parser.h
+++ b/TAO/tao/CORBALOC_Parser.h
@@ -45,18 +45,18 @@ class TAO_CORBALOC_Parser : public TAO_IOR_Parser
{
public:
/// Constructor
- TAO_CORBALOC_Parser (void);
+ TAO_CORBALOC_Parser () = default;
/// The destructor
- virtual ~TAO_CORBALOC_Parser (void);
+ ~TAO_CORBALOC_Parser () override = default;
/// = The IOR_Parser methods, please read the documentation in
/// IOR_Parser.h
- virtual bool match_prefix (const char *ior_string) const;
+ bool match_prefix (const char *ior_string) const override;
/// Parse the ior-string that is passed.
- virtual CORBA::Object_ptr parse_string (const char *ior,
- CORBA::ORB_ptr orb);
+ CORBA::Object_ptr parse_string (const char *ior,
+ CORBA::ORB_ptr orb) override;
private:
/**
@@ -76,9 +76,9 @@ private:
ACE_CString &canonical_endpoint);
struct parsed_endpoint {
- parsed_endpoint ();
+ parsed_endpoint () = default;
~parsed_endpoint ();
- TAO_Profile *profile_;
+ TAO_Profile *profile_ {};
char obj_key_sep_;
ACE_CString prot_addr_;
};