From 8e2743e36496a52ce5cd57398aa648897e0c8562 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Wed, 20 Jul 2005 09:17:27 +0000 Subject: [PATCH] new include files git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@162 7ec92016-0320-0410-acc4-a06ded1c099a --- readme.txt | 46 +++++++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/readme.txt b/readme.txt index f1ab72f..90d36f7 100644 --- a/readme.txt +++ b/readme.txt @@ -1,36 +1,56 @@ -Last update: Aug 29, 2002 +Last update: July 20, 2005 Directions: -To use Loki, simply extract the files from the archive, give your compiler access to their path, and include them appropriately in your code via #include. +To use Loki, simply extract the files from the archive, +give your compiler access to their include path: -If you use the small object allocator directly or indirectly (through the Functor class) you must add SmallObj.cpp to your project/makefile. +- if you have a standard conforming compiler use "loki/include/loki" + or "loki/include" for "#include " usage -If you use Singletons with longevity you must add Singleton.cpp to your project/makefile. +- if you have a non-conforming compiler use "loki/include/noncc/loki" + or "loki/include/noncc" for "#include " usage + + +If you use the small object allocator directly or indirectly +(through the Functor class) you must add SmallObj.cpp to your +project/makefile. + +If you use Singletons with longevity you must add Singleton.cpp +to your project/makefile. Compatibility: Supported Compilers: Gcc v2.95.3 -Microsoft Visual C++ v7.0 +Gcc v3.4 +Microsoft Visual C++ v7.1 +Microsoft Visual C++ v8.0 + +by special noncc files: Borland C++ Builder v6.0 +Microsoft Visual C++ v6.0 +Microsoft Visual C++ v7.0 +see also readme.txt files + Mostly Supported: CodeWarrior 6.0 -TypeList: -Microsoft Visual C++ v6.0 - - -CodeWarrior has a problem with the Conversion template (see TypeManip.h) and, though it compiles it, it doesn't provide correct results. Consequently, the DerivedToFront algorithm in Typelist.h does not function. This affects the static dispatcher in Multimethods.h. As a fix, you must order the types (putting the most derived ones in the front) when providing the typelist argument to StaticDispatcher. +CodeWarrior has a problem with the Conversion template (see TypeManip.h) +and, though it compiles it, it doesn't provide correct results. +Consequently, the DerivedToFront algorithm in Typelist.h does not function. +This affects the static dispatcher in Multimethods.h. As a fix, you must +order the types (putting the most derived ones in the front) when providing +the typelist argument to StaticDispatcher. More info: -http://moderncppdesign.com -http://sourceforge.net/projects/loki-lib/ -http://sourceforge.net/projects/loki-exp/ +Andrei's page : http://erdani.org +Soureforge page: http://sourceforge.net/projects/loki-lib/ +