summaryrefslogtreecommitdiff
path: root/TAO/tao/varbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/varbase.h')
-rw-r--r--TAO/tao/varbase.h49
1 files changed, 23 insertions, 26 deletions
diff --git a/TAO/tao/varbase.h b/TAO/tao/varbase.h
index 6e6f2fd4e74..00f4e780455 100644
--- a/TAO/tao/varbase.h
+++ b/TAO/tao/varbase.h
@@ -1,38 +1,35 @@
// This may look like C, but it's really -*- C++ -*-
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// varbase.h
-//
-// = DESCRIPTION
-// Contains a base class for the object _var classes.
-//
-// = AUTHOR
-// Jeff Parsons.
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file varbase.h
+ *
+ * $Id$
+ *
+ * Contains a base class for the object _var classes.
+ *
+ *
+ * @author Jeff Parsons.
+ */
+//=============================================================================
+
#ifndef TAO_VARBASE_H
#define TAO_VARBASE_H
#include "ace/pre.h"
+/**
+ * @class TAO_Base_var
+ *
+ * @brief TAO_Base_var
+ *
+ * Base class for object _var classes. Used to prevent the
+ * _var class of a CORBA interface from accepting the _var
+ * of a more derived interface in its copy constructor or
+ * assignment operator.
+ */
class TAO_Base_var
{
-//
-// = TITLE
-// TAO_Base_var
-//
-// = DESCRIPTION
-// Base class for object _var classes. Used to prevent the
-// _var class of a CORBA interface from accepting the _var
-// of a more derived interface in its copy constructor or
-// assignment operator.
-//
public:
TAO_Base_var (void) {}
};