Renamed TypeList -> Typelist

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@74 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
jbouchard 2002-11-07 18:49:05 +00:00
parent 302181978d
commit ec8b9cbf5d
2 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@
// Last update: Oct 10, 2002 // Last update: Oct 10, 2002
#pragma once #pragma once
#include "TypeList.h" #include "Typelist.h"
//MSVC7 version //MSVC7 version
namespace Loki namespace Loki
@ -169,7 +169,7 @@ namespace Loki
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// class template IterateTypes // class template IterateTypes
// Iteratates a TypeList, and invokes the ctor of GenFunc<T> // Iteratates a Typelist, and invokes the ctor of GenFunc<T>
// for each type in the list, passing a functor along the way. // for each type in the list, passing a functor along the way.
// The functor is designed to be an insertion iterator which GenFunc<T> // The functor is designed to be an insertion iterator which GenFunc<T>
// can use to output information about the types in the list. // can use to output information about the types in the list.

View file

@ -14,13 +14,13 @@
#ifndef DATAGENERATORS_H #ifndef DATAGENERATORS_H
#define DATAGENERATORS_H #define DATAGENERATORS_H
#include "TypeList.h" #include "Typelist.h"
//Reference version //Reference version
/************************************************************************************ /************************************************************************************
// class template GenData // class template GenData
// Iteratates a TypeList, and invokes the functor GenFunc<T> // Iteratates a Typelist, and invokes the functor GenFunc<T>
// for each type in the list, passing a functor along the way. // for each type in the list, passing a functor along the way.
// The functor is designed to be an insertion iterator which GenFunc<T> // The functor is designed to be an insertion iterator which GenFunc<T>
// can use to output information about the types in the list. // can use to output information about the types in the list.