make comments consistent with the code

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@205 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2005-08-25 15:22:33 +00:00
parent 125f346221
commit ba4d64fbe2

View file

@ -13,7 +13,7 @@
// without express or implied warranty. // without express or implied warranty.
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Last update: March 05, 2001 // $Header:
#ifndef HIERARCHYGENERATORS_INC_ #ifndef HIERARCHYGENERATORS_INC_
#define HIERARCHYGENERATORS_INC_ #define HIERARCHYGENERATORS_INC_
@ -33,10 +33,10 @@ namespace Loki
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// class template GenScatterHierarchy // class template GenScatterHierarchy
// Generates a scattered hierarchy starting from a typelist and a template // Generates a scattered hierarchy starting from a typelist and a template
// Invocation (TList is a typelist, Model is a template of one arg): // Invocation (TList is a typelist, Unit is a template of one arg):
// GenScatterHierarchy<TList, Model> // GenScatterHierarchy<TList, Unit>
// The generated class inherits all classes generated by instantiating the // The generated class inherits all classes generated by instantiating the
// template 'Model' with the types contained in TList // template 'Unit' with the types contained in TList
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
namespace Private namespace Private
@ -237,8 +237,8 @@ namespace Loki
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// class template GenLinearHierarchy // class template GenLinearHierarchy
// Generates a linear hierarchy starting from a typelist and a template // Generates a linear hierarchy starting from a typelist and a template
// Invocation (TList is a typelist, Model is a template of two args): // Invocation (TList is a typelist, Unit is a template of two args):
// GenScatterHierarchy<TList, Model> // GenScatterHierarchy<TList, Unit>
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
template template
@ -281,6 +281,8 @@ namespace Loki
// Change log: // Change log:
// June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!! // June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!!
// September 16, 2002: Fixed dependent template, using "::template" syntax. T.S. // September 16, 2002: Fixed dependent template, using "::template" syntax. T.S.
//
// $Log:
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#endif // HIERARCHYGENERATORS_INC_ #endif // HIERARCHYGENERATORS_INC_