Mirror of the Loki library from Alexandrescu.
Find a file
rich_sposato 5d9ef0ef2c Moved location of #include statements inside file.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1088 7ec92016-0320-0410-acc4-a06ded1c099a
2011-06-21 08:08:18 +00:00
doc update version number 2009-01-29 18:19:04 +00:00
include Moved location of #include statements inside file. 2011-06-21 08:08:18 +00:00
lib svn propdel svn:executable -R * 2006-10-17 18:16:19 +00:00
macosx switching xcode build to loki.framework rather than Loki.framework for consistency with other platforms 2006-06-04 20:14:49 +00:00
src Added 3 new policy classes to support single-owner smart 2010-10-30 03:11:07 +00:00
test Added test for exception handling policies. 2011-06-21 01:11:50 +00:00
CHANGES Added documentation for recent release. 2009-01-28 04:15:21 +00:00
Loki.cbp Added ThreadLocal.h header file. 2009-11-02 05:37:41 +00:00
Loki.dev Added StrongPtr.cpp and StrongPtr.h files to MinGW projects. 2006-04-06 03:49:37 +00:00
Loki.sln Added SafeBits project and made minor corrections. 2009-01-22 07:00:39 +00:00
loki.spec prepare release 2007-02-25 15:49:51 +00:00
Loki.workspace Added project to test if compiler implements thread_local correctly. 2009-11-20 06:37:12 +00:00
Loki_Debug.dev Added StrongPtr.cpp and StrongPtr.h files to MinGW projects. 2006-04-06 03:49:37 +00:00
Loki_MSVC_8.sln add eol property 2008-12-10 20:24:09 +00:00
Loki_MSVC_9.sln Added project to test if compiler implements thread_local correctly. 2009-11-20 06:37:12 +00:00
make.mingw.bat svn propdel svn:executable -R * 2006-10-17 18:16:19 +00:00
make.msvc.bat svn propdel svn:executable -R * 2006-10-17 18:16:19 +00:00
Makefile svn propdel svn:executable -R * 2006-10-17 18:16:19 +00:00
Makefile.common - Updated information for next release 2007-05-29 02:26:26 +00:00
Makefile.deps - Create initial 0.1.6 changelog 2006-07-14 07:31:37 +00:00
README - Added gcc 4.1 to the supported compilers 2006-03-14 22:46:00 +00:00

Last update: Novmber 16, 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. 
  The noncc files are declared as 'deprecated' and will be removed in
  future. They are also not updated with the new features of Loki 
  and bugfixes (unless YOU do it).


If you use the small object allocator directly or indirectly 
(through the Functor class) you must add src/SmallObj.cpp to your 
project/makefile.

If you use Singletons with longevity you must add 
src/Singleton.cpp to your project/makefile.

If you use OrderedStatic.h with you must add 
src/OrderedSataic.cpp to your project/makefile.

Or use the library generated by make.msvc.bat, make.mingw.bat,
or make.


Compatibility:

Supported Compilers:
Gcc v3.4
Gcc v4.0
Gcc v4.1
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/