diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-01-25 03:14:40 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-01-25 03:14:40 +0000 |
commit | 9d78ef37a4f26e1a187b43e71d80b229be750ce9 (patch) | |
tree | c694839c0fe85bc6dea750489b07c096a53997b9 /ace/Registry.cpp | |
parent | 725ff5cc49c742d9dbada6224335e3e8b96abbcb (diff) | |
download | ATCD-9d78ef37a4f26e1a187b43e71d80b229be750ce9.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Registry.cpp')
-rw-r--r-- | ace/Registry.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ace/Registry.cpp b/ace/Registry.cpp index 0b605b9195e..e7fbe924745 100644 --- a/ace/Registry.cpp +++ b/ace/Registry.cpp @@ -34,6 +34,12 @@ ACE_Registry::Name_Component::operator== (const Name_Component &rhs) rhs.kind_ == this->kind_; } +int +ACE_Registry::Name_Component::operator!= (const Name_Component &rhs) +{ + return !this->operator== (rhs); +} + // Simple binding constructor ACE_Registry::Binding::Binding () : name_ (), @@ -70,6 +76,12 @@ ACE_Registry::Binding::operator== (const Binding &rhs) rhs.type_ == this->type_; } +int +ACE_Registry::Binding::operator!= (const Binding &rhs) +{ + return !this->operator== (rhs); +} + // Name accessor // (Name version) void |