source: git/factory/factory.template @ b1dfaf

spielwiese
Last change on this file since b1dfaf was b1dfaf, checked in by Frank Seelisch <seelisch@…>, 14 years ago
patch from Kai (checked for problems under Windows OS: no problems) git-svn-id: file:///usr/local/Singular/svn/trunk@13210 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.3 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id$ */
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 <factory/factoryconf.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#ifdef SINGULAR
39#  include <factory/cf_gmp.h>
40#else
41#  include <gmp.h>
42#endif /* SINGULAR */
43
44#include <factory/templates/ftmpl_array.h>
45#include <factory/templates/ftmpl_factor.h>
46#include <factory/templates/ftmpl_list.h>
47#include <factory/templates/ftmpl_matrix.h>
48
49/*MAKEHEADER PUBLIC ONLY*/
50#include "cf_globals.h"
51
52/*MAKEHEADER PUBLIC ONLY*/
53#include "cf_primes.h"
54
55/*MAKEHEADER PUBLIC ONLY*/
56#include "cf_defs.h"
57
58/*MAKEHEADER PUBLIC ONLY*/
59#include "variable.h"
60
61/*MAKEHEADER PUBLIC ONLY*/
62#include "canonicalform.h"
63
64/*MAKEHEADER PUBLIC ONLY*/
65#include "cf_binom.h"
66
67/*MAKEHEADER PUBLIC ONLY*/
68#include "cf_algorithm.h"
69
70/*MAKEHEADER PUBLIC ONLY*/
71#include "cf_eval.h"
72
73/*MAKEHEADER PUBLIC ONLY*/
74#include "cf_generator.h"
75
76/*MAKEHEADER PUBLIC ONLY*/
77#include "cf_iter.h"
78
79/*MAKEHEADER PUBLIC ONLY*/
80#include "cf_random.h"
81
82/*MAKEHEADER PUBLIC ONLY*/
83#include "cf_irred.h"
84
85/*MAKEHEADER PUBLIC ONLY*/
86#include "fac_util.h"
87
88/*MAKEHEADER PUBLIC ONLY*/
89#include "cf_map.h"
90
91/*MAKEHEADER PUBLIC ONLY*/
92#include "cf_reval.h"
93
94/*MAKEHEADER PUBLIC ONLY*/
95#include "fac_sqrfree.h"
96
97#ifdef SINGULAR
98
99/*MAKEHEADER PUBLIC ONLY*/
100#include "gfops.h"
101
102/*MAKEHEADER PUBLIC ONLY*/
103#include "cf_hnf.h"
104
105/*MAKEHEADER PUBLIC ONLY*/
106#include "singext.h"
107
108#endif /* SINGULAR */
109
110#ifdef HAVE_BIFAC
111/*MAKEHEADER PUBLIC ONLY*/
112#include "bifac.h"
113#endif /* HAVE_BIFAC */
114
115#endif /* ! INCL_FACTORY_H */
Note: See TracBrowser for help on using the repository browser.