summaryrefslogtreecommitdiff
path: root/ASNMP/tests
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 03:46:55 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-04-23 03:46:55 +0000
commit58ed38c9b346078e6e0b9151291f3623f206c2e0 (patch)
tree7cedc3a21fdfd8db410444287e8dc0dcea162e4a /ASNMP/tests
parentddd3fdc0fe56295a0d8b679452f44ebb0c6a850e (diff)
downloadATCD-58ed38c9b346078e6e0b9151291f3623f206c2e0.tar.gz
ChangeLogTag:Thu Apr 22 20:45:27 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ASNMP/tests')
-rw-r--r--ASNMP/tests/Octet_Test.cpp24
-rw-r--r--ASNMP/tests/Oid_Test.cpp12
2 files changed, 18 insertions, 18 deletions
diff --git a/ASNMP/tests/Octet_Test.cpp b/ASNMP/tests/Octet_Test.cpp
index db90b7a5ee2..759ac16ee7c 100644
--- a/ASNMP/tests/Octet_Test.cpp
+++ b/ASNMP/tests/Octet_Test.cpp
@@ -56,18 +56,18 @@ ACE_RCSID(tests, Octet_Test, "$Id$")
OctetStr& operator=( const char *string);
OctetStr& operator=( const OctetStr &octet);
- int operator==( const OctetStr &lhs, const OctetStr &rhs);
- int operator!=( const OctetStr &lhs, const OctetStr &rhs);
- int operator<( const OctetStr &lhs, const OctetStr &rhs);
- int operator<=( const OctetStr &lhs,const OctetStr &rhs);
- int operator>( const OctetStr &lhs, const OctetStr &rhs);
- int operator>=( const OctetStr &lhs, const OctetStr &rhs);
- int operator==( const OctetStr &lhs,const char *rhs);
- int operator!=( const OctetStr &lhs,const char *rhs);
- int operator<( const OctetStr &lhs,const char *rhs);
- int operator<=( const OctetStr &lhs,char *rhs);
- int operator>( const OctetStr &lhs,const char *rhs);
- int operator>=( const OctetStr &lhs,const char *rhs);
+ bool operator==( const OctetStr &lhs, const OctetStr &rhs);
+ bool operator!=( const OctetStr &lhs, const OctetStr &rhs);
+ bool operator<( const OctetStr &lhs, const OctetStr &rhs);
+ bool operator<=( const OctetStr &lhs,const OctetStr &rhs);
+ bool operator>( const OctetStr &lhs, const OctetStr &rhs);
+ bool operator>=( const OctetStr &lhs, const OctetStr &rhs);
+ bool operator==( const OctetStr &lhs,const char *rhs);
+ bool operator!=( const OctetStr &lhs,const char *rhs);
+ bool operator<( const OctetStr &lhs,const char *rhs);
+ bool operator<=( const OctetStr &lhs,char *rhs);
+ bool operator>( const OctetStr &lhs,const char *rhs);
+ bool operator>=( const OctetStr &lhs,const char *rhs);
OctetStr& operator+=( const SmiBYTE *a);
OctetStr& operator+=( const char c);
OctetStr& operator+=( const OctetStr& octetstr);
diff --git a/ASNMP/tests/Oid_Test.cpp b/ASNMP/tests/Oid_Test.cpp
index 9343dc2575e..c4b1660ef92 100644
--- a/ASNMP/tests/Oid_Test.cpp
+++ b/ASNMP/tests/Oid_Test.cpp
@@ -51,12 +51,12 @@ ACE_RCSID(tests, Oid_Test, "$Id$")
SmiUINT32 get_syntax();
Oid& operator=( const Oid &oid);
- int operator==( const Oid &lhs,const Oid &rhs);
- int operator!=( const Oid &lhs,const Oid &rhs);
- int operator<( const Oid &lhs,const Oid &rhs);
- int operator<=( const Oid &lhs,const Oid &rhs);
- int operator>( const Oid &lhs,const Oid &rhs);
- int operator>=( const Oid &lhs,const Oid &rhs);
+ bool operator==( const Oid &lhs,const Oid &rhs);
+ bool operator!=( const Oid &lhs,const Oid &rhs);
+ bool operator<( const Oid &lhs,const Oid &rhs);
+ bool operator<=( const Oid &lhs,const Oid &rhs);
+ bool operator>( const Oid &lhs,const Oid &rhs);
+ bool operator>=( const Oid &lhs,const Oid &rhs);
Oid& operator+=( const char *a);
Oid& operator+=( const unsigned long i);
Oid& operator+=( const Oid &o);