Fixed placeholder compatibility with Boost 1.34.
[luabind.git] / doc / index.html
blobc632bb1f64719d1cc035a25139e05662c9095011
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
3 <html>
4 <head>
5 <title>luabind</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
7 <link href="style.css" type="text/css" rel="stylesheet">
8 </head>
9 <body>
11 <p style="text-align:center"><img style="border:0;width:256px;height:256px" src="luabind.png" alt="luabind logo"></p>
13 <table style="margin-left:auto;margin-right:auto" cellpadding="10">
14 <tr>
15 <td><a href="https://sourceforge.net/project/showfiles.php?group_id=77060">download</a></td>
16 <td><a href="docs.html">documentation</a></td>
17 <td><a href="https://lists.sourceforge.net/lists/listinfo/luabind-user">mailing list</a></td>
18 <td><a href="https://sourceforge.net/projects/luabind/">the sourceforge page</a></td>
19 </tr>
20 </table>
22 <p>Luabind is a library that helps you create bindings
23 between C++ and <a href="http://www.lua.org">lua</a>. It
24 has the ability to expose functions and classes, written in C++, to lua. It will
25 also supply the functionality to define classes in lua and let them derive from
26 other lua classes or C++ classes. Lua classes can override virtual functions
27 from their C++ baseclasses. It is written towards lua 5.0, and does not work
28 with lua 4.</p>
30 <p>It is implemented utilizing template meta programming.
31 That means that you don't need an extra preprocess pass to compile your project
32 (it is done by the compiler). It also means you don't (usually) have to know the
33 exact signature of each function you register, since the library will generate
34 code depending on the compile-time type of the function (which includes the
35 signature). The main drawback of this approach is that the compilation time will
36 increase for the file that does the registration, it is therefore recommended
37 that you register everything in the same cpp-file.</p>
39 <p>luabind is released under the terms of the
40 <a href="http://www.opensource.org/licenses/mit-license.php">MIT license</a>.</p>
42 <p>
43 luabind is hosted by sourceforge.<br>
44 <a href="http://sourceforge.net">
45 <img src="http://sourceforge.net/sflogo.php?group_id=77060&amp;type=5"
46 style="width:210;height:62;border:0"
47 alt="SourceForge.net Logo"></a>
49 <br>
51 <a href="http://validator.w3.org/check/referer">
52 <img style="border:0;width:88px;height:31px"
53 src="http://www.w3.org/Icons/valid-html401"
54 alt="Valid HTML 4.01!"></a>
56 <a href="http://jigsaw.w3.org/css-validator/">
57 <img style="border:0;width:88px;height:31px"
58 src="http://jigsaw.w3.org/css-validator/images/vcss"
59 alt="Valid CSS!"></a>
61 </p>
63 </body></html>