summaryrefslogtreecommitdiff
path: root/TAO/tao/Any.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-06 05:31:12 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-06 05:31:12 +0000
commit51a16f0356c1c61bffd234de7a0bc4e304a36643 (patch)
tree1ffe7ee6c6ad40b2c91c430489d3de24b2a4bbf8 /TAO/tao/Any.h
parent0a1054451079d1b527552ce1a1007ace4f5b52fa (diff)
downloadATCD-51a16f0356c1c61bffd234de7a0bc4e304a36643.tar.gz
.
Diffstat (limited to 'TAO/tao/Any.h')
-rw-r--r--TAO/tao/Any.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Any.h b/TAO/tao/Any.h
index 61153cd8ddc..337f0c79685 100644
--- a/TAO/tao/Any.h
+++ b/TAO/tao/Any.h
@@ -77,10 +77,10 @@ public:
CORBA_Any (CORBA::TypeCode_ptr type,
CORBA::UShort dummy,
const ACE_Message_Block* mb);
- // Constructor. Used by DynAny and others to optimize Any
- // activities by using CDR. The dummy arg is to keep calls
- // like CORBA_Any foo (CORBA::TypeCode_ptr bar (NULL), NULL) from
- // being confused with the constructor above.
+ // Constructor. Used by DynAny and others to optimize Any activities
+ // by using CDR. The dummy arg is to keep calls like CORBA_Any foo
+ // (CORBA::TypeCode_ptr bar (NULL), NULL) from being confused with
+ // the constructor above.
CORBA_Any (const CORBA_Any &a);
// Copy constructor.
@@ -284,9 +284,9 @@ public:
// = TAO extensions
CORBA::Boolean any_owns_data (void) const;
- // does the Any own the data or not. This is used by the >>=
- // operators generated by the IDL compiler. The >>= operator checks
- // if the Any owns the data. If it does, then it will simply
+ // Reports whether the Any own the data or not. This is used by the
+ // >>= operators generated by the IDL compiler. The >>= operator
+ // checks if the Any owns the data. If it does, then it will simply
// retrieve the data from internal cache. Otherwise, the operator
// will have to decode the cdr string.