summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicAny/DynEnum_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/DynamicAny/DynEnum_i.h')
-rw-r--r--TAO/tao/DynamicAny/DynEnum_i.h46
1 files changed, 21 insertions, 25 deletions
diff --git a/TAO/tao/DynamicAny/DynEnum_i.h b/TAO/tao/DynamicAny/DynEnum_i.h
index 3a08cfea1fa..d8bb9281ba2 100644
--- a/TAO/tao/DynamicAny/DynEnum_i.h
+++ b/TAO/tao/DynamicAny/DynEnum_i.h
@@ -1,18 +1,15 @@
/* -*- C++ -*- */
-// $Id$
-
-// =======================================================================
-//
-// = LIBRARY
-// TAO_DynamicAny
-//
-// = FILENAME
-// DynEnum_i.h
-//
-// = AUTHOR
-// Jeff Parsons <parsons@cs.wustl.edu>
-//
-// ========================================================================
+
+//=============================================================================
+/**
+ * @file DynEnum_i.h
+ *
+ * $Id$
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef TAO_DYNENUM_I_H
#define TAO_DYNENUM_I_H
@@ -34,31 +31,30 @@
# pragma warning (disable:4250)
#endif /* _MSC_VER */
+/**
+ * @class TAO_DynEnum_i
+ *
+ * Implementation of Dynamic Any type for enums
+ */
class TAO_DynamicAny_Export TAO_DynEnum_i
: public virtual DynamicAny::DynEnum,
public virtual TAO_DynCommon,
public virtual TAO_Local_RefCounted_Object
{
- // = TITLE
- // TAO_DynEnum_i
- //
- // = DESCRIPTION
- // Implementation of Dynamic Any type for enums
- //
public:
+ /// Constructor.
TAO_DynEnum_i (void);
- // Constructor.
+ /// Destructor.
~TAO_DynEnum_i (void);
- // Destructor.
+ /// Initialize using just a TypeCode.
void init (CORBA::TypeCode_ptr tc
ACE_ENV_ARG_DECL);
- // Initialize using just a TypeCode.
+ /// Initialize using an Any.
void init (const CORBA::Any& any
ACE_ENV_ARG_DECL);
- // Initialize using an Any.
// = LocalObject methods.
static TAO_DynEnum_i *_narrow (
@@ -152,8 +148,8 @@ private:
TAO_DynEnum_i &operator= (const TAO_DynEnum_i &src);
private:
+ /// Current numeric value of the enum.
CORBA::ULong value_;
- // Current numeric value of the enum.
};
#if defined(_MSC_VER) && (_MSC_VER >= 1200)