Mirror of the Loki library from Alexandrescu.
Find a file
syntheticpp 0df314b345 remove debug code
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@310 7ec92016-0320-0410-acc4-a06ded1c099a
2005-10-17 09:44:00 +00:00
doc generate no folders 2005-09-29 08:57:13 +00:00
include add DeletableSingleton policy and examples from Curtis Krauskopf's CUJ article 'Creating Dynamic Singletons & the Loki Library' - www.decompile.com 2005-10-17 08:43:42 +00:00
src remove debug code 2005-10-17 09:44:00 +00:00
test add test for static member variables 2005-10-17 09:43:45 +00:00
tools/HeaderGen update makefiles 2005-09-24 16:34:19 +00:00
make.mingw.bat the installer needs a batch file 2005-09-25 11:51:18 +00:00
make.msvc.bat update msvc build process 2005-09-29 08:09:17 +00:00
Makefile add general gcc makefiles 2005-09-24 23:08:48 +00:00
Makefile-debian update build process 2005-10-05 18:14:21 +00:00
readme.txt new include files 2005-07-20 09:17:27 +00:00

Last update: July 20, 2005

Directions:

To use Loki, simply extract the files from the archive, 
give your compiler access to their include path:

- if you have a standard conforming compiler use "loki/include/loki" 
  or "loki/include" for "#include <loki/HeaderFile.h>" usage

- if you have a non-conforming compiler use "loki/include/noncc/loki" 
  or "loki/include/noncc" for "#include <loki/HeaderFile.h>" 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
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

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:

Andrei's page  : http://erdani.org 
Soureforge page: http://sourceforge.net/projects/loki-lib/