• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-3,6303,315

include/H03-May-2022-25,53816,860

lib/H03-May-2022-21

macosx/H03-May-2022-483456

src/H03-May-2022-4,7343,595

test/H03-May-2022-38,68632,220

CHANGESH A D03-May-202213.3 KiB447332

Loki.cbpH A D03-May-20223.4 KiB9291

Loki.devH A D03-May-20225.8 KiB440398

Loki.slnH A D03-May-202213 KiB195193

Loki.workspaceH A D03-May-20221.8 KiB4746

Loki_Debug.devH A D03-May-20225.7 KiB440398

Loki_MSVC_8.slnH A D03-May-202210.6 KiB153151

Loki_MSVC_9.slnH A D03-May-202216.9 KiB220219

MakefileH A D03-May-2022592 3224

Makefile.commonH A D03-May-2022369 85

Makefile.depsH A D03-May-2022518 2720

READMEH A D03-May-20221.8 KiB6443

loki.specH A D03-May-20222.1 KiB7861

make.mingw.batH A D03-May-2022126 118

make.msvc.batH A D03-May-20221.3 KiB9368

README

1Last update: Novmber 16, 2005
2
3Directions:
4
5To use Loki, simply extract the files from the archive,
6give your compiler access to their include path:
7
8- if you have a standard conforming compiler use "loki/include/loki"
9  or "loki/include" for "#include <loki/HeaderFile.h>" usage
10
11- if you have a non-conforming compiler use "loki/include/noncc/loki"
12  or "loki/include/noncc" for "#include <loki/HeaderFile.h>" usage.
13  The noncc files are declared as 'deprecated' and will be removed in
14  future. They are also not updated with the new features of Loki
15  and bugfixes (unless YOU do it).
16
17
18If you use the small object allocator directly or indirectly
19(through the Functor class) you must add src/SmallObj.cpp to your
20project/makefile.
21
22If you use Singletons with longevity you must add
23src/Singleton.cpp to your project/makefile.
24
25If you use OrderedStatic.h with you must add
26src/OrderedSataic.cpp to your project/makefile.
27
28Or use the library generated by make.msvc.bat, make.mingw.bat,
29or make.
30
31
32Compatibility:
33
34Supported Compilers:
35Gcc v3.4
36Gcc v4.0
37Gcc v4.1
38Microsoft Visual C++ v7.1
39Microsoft Visual C++ v8.0
40
41by special noncc files:
42Borland C++ Builder v6.0
43Microsoft Visual C++ v6.0
44Microsoft Visual C++ v7.0
45see also readme.txt files
46
47
48Mostly Supported:
49CodeWarrior 6.0
50
51CodeWarrior has a problem with the Conversion template (see TypeManip.h)
52and, though it compiles it, it doesn't provide correct results.
53Consequently, the DerivedToFront algorithm in Typelist.h does not function.
54This affects the static dispatcher in Multimethods.h. As a fix, you must
55order the types (putting the most derived ones in the front) when providing
56the typelist argument to StaticDispatcher.
57
58
59
60More info:
61
62Andrei's page  : http://erdani.org
63Soureforge page: http://sourceforge.net/projects/loki-lib/
64