source: git/factory/factory.template @ a9c298

spielwiese
Last change on this file since a9c298 was 1afbfe, checked in by Hans Schoenemann <hannes@…>, 10 years ago
fix: stdint.h is needed on some systems for intptr_t
  • Property mode set to 100644
File size: 2.3 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3#ifndef INCL_FACTORY_H
4#define INCL_FACTORY_H
5
6//{{{ docu
7//
8// factory.template - template to generate `factory.h'.
9//
10// `factory.h' is the user interface to Factory.  Created
11// automatically by `makeheader', it collects all important
12// declarations from all important Factory header files into one
13// overall header file leaving out all boring Factory internal
14// stuff.  See `./bin/makeheader' for an explanation of the syntax
15// of this file.
16//
17// Note: In this file the order of "includes" matters (since this
18// are not real includes)!  In general, files at the end depend
19// on files at the beginning.
20//
21//}}}
22
23#include <factory/factoryconf.h>
24#include <stdint.h>
25
26#ifndef NOSTREAMIO
27#  ifdef HAVE_IOSTREAM
28#    include <iostream>
29#    define OSTREAM std::ostream
30#    define ISTREAM std::istream
31#  elif defined(HAVE_IOSTREAM_H)
32#    include <iostream.h>
33#    define OSTREAM ostream
34#    define ISTREAM istream
35#  endif
36#endif /* ! NOSTREAMIO */
37
38#include <factory/cf_gmp.h>
39
40#include <factory/templates/ftmpl_array.h>
41#include <factory/templates/ftmpl_afactor.h>
42#include <factory/templates/ftmpl_factor.h>
43#include <factory/templates/ftmpl_list.h>
44#include <factory/templates/ftmpl_matrix.h>
45
46/*MAKEHEADER PUBLIC ONLY*/
47#include "cf_globals.h"
48
49/*MAKEHEADER PUBLIC ONLY*/
50#include "cf_primes.h"
51
52/*MAKEHEADER PUBLIC ONLY*/
53#include "cf_defs.h"
54
55/*MAKEHEADER PUBLIC ONLY*/
56#include "variable.h"
57
58/*MAKEHEADER PUBLIC ONLY*/
59#include "canonicalform.h"
60
61/*MAKEHEADER PUBLIC ONLY*/
62#include "cf_binom.h"
63
64/*MAKEHEADER PUBLIC ONLY*/
65#include "cf_algorithm.h"
66
67/*MAKEHEADER PUBLIC ONLY*/
68#include "cf_eval.h"
69
70/*MAKEHEADER PUBLIC ONLY*/
71#include "cf_generator.h"
72
73/*MAKEHEADER PUBLIC ONLY*/
74#include "cf_iter.h"
75
76/*MAKEHEADER PUBLIC ONLY*/
77#include "cf_random.h"
78
79/*MAKEHEADER PUBLIC ONLY*/
80#include "cf_irred.h"
81
82/*MAKEHEADER PUBLIC ONLY*/
83#include "fac_util.h"
84
85/*MAKEHEADER PUBLIC ONLY*/
86#include "cf_map.h"
87
88/*MAKEHEADER PUBLIC ONLY*/
89#include "cf_reval.h"
90
91/*MAKEHEADER PUBLIC ONLY*/
92#include "fac_sqrfree.h"
93
94/*MAKEHEADER PUBLIC ONLY*/
95#include "gfops.h"
96
97/*MAKEHEADER PUBLIC ONLY*/
98#include "cf_hnf.h"
99
100/*MAKEHEADER PUBLIC ONLY*/
101#include "singext.h"
102
103/*MAKEHEADER PUBLIC ONLY*/
104#include "cf_util.h"
105
106/*MAKEHEADER PUBLIC ONLY*/
107#include "facIrredTest.h"
108
109/*MAKEHEADER PUBLIC ONLY*/
110#include "facAbsFact.h"
111
112#endif /* ! INCL_FACTORY_H */
Note: See TracBrowser for help on using the repository browser.