summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/utl_decllist.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/utl_decllist.h')
-rw-r--r--TAO/TAO_IDL/include/utl_decllist.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/TAO/TAO_IDL/include/utl_decllist.h b/TAO/TAO_IDL/include/utl_decllist.h
index 4a33e154ac2..030cef94568 100644
--- a/TAO/TAO_IDL/include/utl_decllist.h
+++ b/TAO/TAO_IDL/include/utl_decllist.h
@@ -53,8 +53,8 @@ Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR
Sun, Sun Microsystems and the Sun logo are trademarks or registered
trademarks of Sun Microsystems, Inc.
-SunSoft, Inc.
-2550 Garcia Avenue
+SunSoft, Inc.
+2550 Garcia Avenue
Mountain View, California 94043
NOTE:
@@ -73,15 +73,15 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
// NOTE: This list class only works correctly because we use single public
// inheritance, as opposed to multiple inheritance or public virtual.
-// It relies on a type-unsafe cast from UTL_List to subclasses, which
-// will cease to operate correctly if you use either multiple or
-// public virtual inheritance.
+// It relies on a type-unsafe cast from UTL_List to subclasses, which
+// will cease to operate correctly if you use either multiple or
+// public virtual inheritance.
//
-// For portability reasons we have decided to provide both this and
-// an implementation of the list classes in terms of templates. If
-// your compiler supports templates, please use the files in the
-// include/utl_tmpl and util/utl_tmpl directories instead of the
-// files by the same names in the include and util directories.
+// For portability reasons we have decided to provide both this and
+// an implementation of the list classes in terms of templates. If
+// your compiler supports templates, please use the files in the
+// include/utl_tmpl and util/utl_tmpl directories instead of the
+// files by the same names in the include and util directories.
/*
** DEPENDENCIES: utl_list.hh, fe_declarator.hh
@@ -89,7 +89,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
** USE: Included from util.hh
*/
-class UTL_DeclList : public UTL_List
+class UTL_DeclList : public UTL_List
{
public:
// Operations
@@ -98,15 +98,15 @@ public:
UTL_DeclList(FE_Declarator *s, UTL_DeclList *cdr);
// Get element
- FE_Declarator *head();
+ FE_Declarator *head();
private:
// Data
- FE_Declarator *pd_car_data; // The element this list stores
+ FE_Declarator *pd_car_data; // The element this list stores
};
// Active iterator fooor UTL_DeclList
-class UTL_DecllistActiveIterator : public UTL_ListActiveIterator
+class UTL_DecllistActiveIterator : public UTL_ListActiveIterator
{
public:
// Operations
@@ -115,7 +115,7 @@ public:
UTL_DecllistActiveIterator(UTL_DeclList *s);
// Get current item
- FE_Declarator *item();
+ FE_Declarator *item();
};
#endif // _UTL_DECLLIST_UTL_DECLLIST_HH