summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-06-27 13:58:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-06-27 13:58:51 +0000
commit5ed4a96928af01d79cd5043ada734bbe77c32e93 (patch)
tree4a5c6ce4ddc2abb0f5fd66393a2802b632ec91d9
parent510781dfc745dba14b8be347d07e93beb52279ec (diff)
downloadATCD-5ed4a96928af01d79cd5043ada734bbe77c32e93.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/Union.cpp1
-rw-r--r--TAO/tao/Union.h16
2 files changed, 9 insertions, 8 deletions
diff --git a/TAO/tao/Union.cpp b/TAO/tao/Union.cpp
index a107eef5bfb..b8aeda25161 100644
--- a/TAO/tao/Union.cpp
+++ b/TAO/tao/Union.cpp
@@ -1,4 +1,5 @@
// $Id$
+
// ============================================================================
//
// = LIBRARY
diff --git a/TAO/tao/Union.h b/TAO/tao/Union.h
index 292763892fa..37dd9220e01 100644
--- a/TAO/tao/Union.h
+++ b/TAO/tao/Union.h
@@ -26,25 +26,25 @@ class TAO_Export TAO_Base_Union
// = DESCRIPTION
// This class provides a common interface for all IDL unions,
// hence the interpreted marshal engine can manipulate them in a
- // type safe manner.
+ // type-safe manner.
public:
friend class TAO_Marshal_Union;
- // We give access to TAO_Marshal_Union, this allows a safe implementation of
- // the marshal engine.
+ // We give access to TAO_Marshal_Union, this allows a safe
+ // implementation of the marshal engine.
virtual ~TAO_Base_Union (void);
// destructor.
virtual void *_discriminant (void) = 0;
- // return pointer to the discriminant
+ // Return pointer to the discriminant.
virtual void *_access (CORBA::Boolean flag) = 0;
- // Provides access to the right data member at the right offset. If the flag
- // is TRUE, we allocate the necessary storage. This will be required for the
- // decoding side.
+ // Provides access to the right data member at the right offset. If
+ // the flag is TRUE, we allocate the necessary storage. This will be
+ // required for the decoding side.
virtual void _reset (void) = 0;
- // free existing storage
+ // Free existing storage.
protected:
TAO_Base_Union (void);