1 | /* emacs edit mode for this file is -*- C++ -*- */ |
---|
2 | /* $Id: factory.template,v 1.13 2002-11-04 17:06:25 bricken Exp $ */ |
---|
3 | |
---|
4 | #ifndef INCL_FACTORY_H |
---|
5 | #define INCL_FACTORY_H |
---|
6 | |
---|
7 | //{{{ docu |
---|
8 | // |
---|
9 | // factory.template - template to generate `factory.h'. |
---|
10 | // |
---|
11 | // `factory.h' is the user interface to Factory. Created |
---|
12 | // automatically by `makeheader', it collects all important |
---|
13 | // declarations from all important Factory header files into one |
---|
14 | // overall header file leaving out all boring Factory internal |
---|
15 | // stuff. See `./bin/makeheader' for an explanation of the syntax |
---|
16 | // of this file. |
---|
17 | // |
---|
18 | // Note: In this file the order of "includes" matters (since this |
---|
19 | // are not real includes)! In general, files at the end depend |
---|
20 | // on files at the beginning. |
---|
21 | // |
---|
22 | //}}} |
---|
23 | |
---|
24 | #include <factoryconf.h> |
---|
25 | |
---|
26 | #ifndef NOSTREAMIO |
---|
27 | #include <iostream.h> |
---|
28 | #endif /* ! NOSTREAMIO */ |
---|
29 | |
---|
30 | #ifdef SINGULAR |
---|
31 | extern "C" { |
---|
32 | #ifdef __cplusplus |
---|
33 | #undef __cplusplus |
---|
34 | #include <gmp.h> |
---|
35 | #define __cplusplus |
---|
36 | #else |
---|
37 | #include <gmp.h> |
---|
38 | #endif |
---|
39 | } |
---|
40 | #endif /* SINGULAR */ |
---|
41 | |
---|
42 | #ifdef macintosh |
---|
43 | #include <:templates:ftmpl_array.h> |
---|
44 | #include <:templates:ftmpl_factor.h> |
---|
45 | #include <:templates:ftmpl_list.h> |
---|
46 | #include <:templates:ftmpl_matrix.h> |
---|
47 | #else |
---|
48 | #include <templates/ftmpl_array.h> |
---|
49 | #include <templates/ftmpl_factor.h> |
---|
50 | #include <templates/ftmpl_list.h> |
---|
51 | #include <templates/ftmpl_matrix.h> |
---|
52 | #endif |
---|
53 | |
---|
54 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
55 | #include "cf_globals.h" |
---|
56 | |
---|
57 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
58 | #include "cf_primes.h" |
---|
59 | |
---|
60 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
61 | #include "cf_defs.h" |
---|
62 | |
---|
63 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
64 | #include "variable.h" |
---|
65 | |
---|
66 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
67 | #include "canonicalform.h" |
---|
68 | |
---|
69 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
70 | #include "cf_binom.h" |
---|
71 | |
---|
72 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
73 | #include "cf_algorithm.h" |
---|
74 | |
---|
75 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
76 | #include "cf_eval.h" |
---|
77 | |
---|
78 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
79 | #include "cf_generator.h" |
---|
80 | |
---|
81 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
82 | #include "cf_iter.h" |
---|
83 | |
---|
84 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
85 | #include "cf_random.h" |
---|
86 | |
---|
87 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
88 | #include "cf_irred.h" |
---|
89 | |
---|
90 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
91 | #include "fac_util.h" |
---|
92 | |
---|
93 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
94 | #include "cf_map.h" |
---|
95 | |
---|
96 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
97 | #include "cf_reval.h" |
---|
98 | |
---|
99 | #ifdef SINGULAR |
---|
100 | |
---|
101 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
102 | #include "gfops.h" |
---|
103 | |
---|
104 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
105 | #include "singext.h" |
---|
106 | |
---|
107 | #endif /* SINGULAR */ |
---|
108 | |
---|
109 | #endif /* ! INCL_FACTORY_H */ |
---|