1 /* @include ajlib *************************************************************
2 **
3 ** AJAX library most commonly needed include files
4 **
5 ** @author Copyright (C) 2011 Peter Rice
6 ** @version $Revision: 1.1 $
7 ** @modified $Date: 2011/10/18 14:23:40 $ by $Author: rice $
8 ** @@
9 **
10 ** This library is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU Lesser General Public
12 ** License as published by the Free Software Foundation; either
13 ** version 2.1 of the License, or (at your option) any later version.
14 **
15 ** This library is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ** Lesser General Public License for more details.
19 **
20 ** You should have received a copy of the GNU Lesser General Public
21 ** License along with this library; if not, write to the Free Software
22 ** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
23 ** MA  02110-1301,  USA.
24 **
25 ******************************************************************************/
26 
27 #ifndef AJLIB_H
28 #define AJLIB_H
29 
30 /* ========================================================================= */
31 /* ============================= include files ============================= */
32 /* ========================================================================= */
33 
34 #include "ajdefine.h"
35 #include "ajmem.h"
36 #include "ajmess.h"
37 #include "ajstr.h"
38 #include "ajfmt.h"
39 
40 AJ_BEGIN_DECLS
41 
42 
43 
44 
45 /* ========================================================================= */
46 /* =============================== constants =============================== */
47 /* ========================================================================= */
48 
49 
50 
51 
52 /* ========================================================================= */
53 /* ============================== public data ============================== */
54 /* ========================================================================= */
55 
56 
57 
58 
59 /* ========================================================================= */
60 /* =========================== public functions ============================ */
61 /* ========================================================================= */
62 
63 
64 
65 
66 /*
67 ** Prototype definitions
68 */
69 
70 
71 /*
72 ** End of prototype definitions
73 */
74 
75 
76 
77 
78 #ifdef AJ_COMPILE_DEPRECATED_BOOK
79 
80 #endif /* AJ_COMPILE_DEPRECATED_BOOK */
81 
82 #ifdef AJ_COMPILE_DEPRECATED
83 
84 #endif /* AJ_COMPILE_DEPRECATED */
85 
86 
87 
88 
89 AJ_END_DECLS
90 
91 #endif /* !AJLIB_H */
92