Imported Robodoc.
[robodoc.git] / Source / lua_generator.c
1 /*
2 Copyright (C) 1994-2007  Frans Slothouber, Jacco van Weert, Petteri Kettunen,
3 Bernd Koesling, Thomas Aglassinger, Anthon Pang, Stefan Kost, David Druffner,
4 Sasha Vasko, Kai Hofmann, Thierry Pierron, Friedrich Haase, and Gergely Budai.
5
6 This file is part of ROBODoc
7
8 ROBODoc is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 */
22
23 #ifdef USE_LUA
24
25 /****m* ROBODoc/Lua_Generator
26  * FUNCTION
27  *   Shell generator that actually gives data to a Lua script.
28  *   Supports singledoc mode.
29  * 
30  * AUTHOR
31  *   Jeremy Cowgar <jc@cowgar.com>
32  * 
33  * NOTES
34  *   No code defined yet. This is just a shell.
35  *******
36  */
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <assert.h>
42
43 #include "generator.h"
44 #include "util.h"
45 #include "links.h"
46 #include "lua_generator.h"
47 #include "globals.h"
48 #include "robodoc.h"
49
50 #ifdef DMALLOC
51 #include <dmalloc.h>
52 #endif
53
54 /* Source to come soon */
55
56 #endif