source: git/factory/factory.template @ 974ce1

spielwiese
Last change on this file since 974ce1 was 974ce1, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* templates/: all files prefixed with ftmpl_. All #include statements changed. git-svn-id: file:///usr/local/Singular/svn/trunk@416 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.5 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: factory.template,v 1.7 1997-06-20 10:45:17 schmidt Exp $ */
3
4#ifndef INCL_FACTORY_H
5#define INCL_FACTORY_H
6
7#include <factoryconf.h>
8
9#ifndef NOSTREAMIO
10#include <iostream.h>
11#endif /* NOSTREAMIO */
12
13#ifdef SINGULAR
14extern "C" {
15#include <gmp.h>
16}
17#endif
18
19#include <templates/ftmpl_array.h>
20#include <templates/ftmpl_factor.h>
21#include <templates/ftmpl_list.h>
22#include <templates/ftmpl_matrix.h>
23
24// note that in this file the order of 'includes' matters!
25// in general, files at the end depend on file at the beginning.
26
27/*MAKEHEADER PUBLIC ONLY*/
28#include "cf_globals.h"
29
30/*MAKEHEADER PUBLIC ONLY*/
31#include "cf_primes.h"
32
33/*MAKEHEADER PUBLIC ONLY*/
34#include "cf_defs.h"
35
36/*MAKEHEADER PUBLIC ONLY*/
37#include "variable.h"
38
39/*MAKEHEADER PUBLIC ONLY*/
40#include "canonicalform.h"
41
42/*MAKEHEADER PUBLIC ONLY*/
43#include "cf_binom.h"
44
45/*MAKEHEADER PUBLIC ONLY*/
46#include "cf_chinese.h"
47
48/*MAKEHEADER PUBLIC ONLY*/
49#include "cf_eval.h"
50
51/*MAKEHEADER PUBLIC ONLY*/
52#include "cf_generator.h"
53
54/*MAKEHEADER PUBLIC ONLY*/
55#include "cf_iter.h"
56
57/*MAKEHEADER PUBLIC ONLY*/
58#include "cf_random.h"
59
60/*MAKEHEADER PUBLIC ONLY*/
61#include "cf_irred.h"
62
63/*MAKEHEADER PUBLIC ONLY*/
64#include "fac_util.h"
65
66/*MAKEHEADER PUBLIC ONLY*/
67#include "cf_map.h"
68
69/*MAKEHEADER PUBLIC ONLY*/
70#include "cf_reval.h"
71
72#ifdef SINGULAR
73/*MAKEHEADER PUBLIC ONLY*/
74#include "gfops.h"
75
76/*MAKEHEADER PUBLIC ONLY*/
77#include "singext.h"
78#endif
79
80#endif /* ! INCL_FACTORY_H */
Note: See TracBrowser for help on using the repository browser.