summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-07-18 03:50:20 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-07-18 03:50:20 +0000
commit67dd84f7a9f60700fbd0933c317d112f17ddd8d0 (patch)
tree94bee455595fe7c222a4d7e92e55bd16efb0c729
parent53ec6492a4fbfb7a942575859aadeab21de17cf8 (diff)
downloadATCD-67dd84f7a9f60700fbd0933c317d112f17ddd8d0.tar.gz
ChangeLogTag:Wed Jul 17 01:00:26 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h4
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_Operators.h9
3 files changed, 9 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.cpp
index 47e2017b72c..aa1cbdf9821 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.cpp
@@ -7,7 +7,7 @@ ACE_RCSID (PortableGroup,
int
-TAO_PG_MemberInfo::operator== (const struct TAO_PG_MemberInfo & rhs)
+TAO_PG_MemberInfo::operator== (const TAO_PG_MemberInfo & rhs)
{
// For the purposes of the member info set, only the location is
// important.
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h
index b5a256146da..d561c6e2cfc 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_MemberInfo.h
@@ -30,7 +30,7 @@
*
* @brief Structure that contains all member-specific information.
*
- *
+ * Structure that contains all member-specific information.
*/
struct TAO_PG_MemberInfo
{
@@ -47,7 +47,7 @@ struct TAO_PG_MemberInfo
* important. In particular, if a member already resides at the
* given location, this equality operator will return true.
*/
- int operator== (const struct TAO_PG_MemberInfo & rhs);
+ int operator== (const TAO_PG_MemberInfo & rhs);
};
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Operators.h b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Operators.h
index 360da6d42c4..85d37e7dbb8 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Operators.h
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_Operators.h
@@ -17,26 +17,29 @@
#include "ace/pre.h"
-#include "orbsvcs/CosNamingC.h"
+#include "portablegroup_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#include "orbsvcs/CosNamingC.h"
/// Global CosNaming::Name equality operator.
/**
* Used for checking equality of PortableGroup::Location and
* PortableGroup::Property variables.
*/
-int operator== (const CosNaming::Name & lhs, const CosNaming::Name &rhs);
+int TAO_PortableGroup_Export operator== (const CosNaming::Name & lhs,
+ const CosNaming::Name & rhs);
/// Global CosNaming::Name inequality operator.
/**
* This simple implementation simply negates the result of the
* equality operator.
*/
-int operator!= (const CosNaming::Name & lhs, const CosNaming::Name &rhs);
+int TAO_PortableGroup_Export operator!= (const CosNaming::Name & lhs,
+ const CosNaming::Name & rhs);
#include "ace/post.h"