source: git/factory/libfac/factor/tmpl_inst.cc @ 16f511

fieker-DuValspielwiese
Last change on this file since 16f511 was 16f511, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Fixed the usage of "config.h" (if defined HAVE_CONFIG_H)
  • Property mode set to 100644
File size: 1.5 KB
Line 
1////////////////////////////////////////////////////////////
2// emacs edit mode for this file is -*- C++ -*-
3////////////////////////////////////////////////////////////
4
5#ifdef HAVE_CONFIG_H
6#include "config.h"
7#endif /* HAVE_CONFIG_H */
8
9// #include <factory/factoryconf.h>
10
11// #include "factory.h"
12#include "cf_iter.h"
13#include "canonicalform.h"
14#include "cf_assert.h"
15#include "cf_reval.h"
16
17//#include "templates/ftmpl_array.cc"
18//#include "templates/ftmpl_factor.cc"
19#include "templates/ftmpl_list.cc"
20//#include "templates/ftmpl_functions.h"
21//#include "templates/ftmpl_matrix.cc"
22
23// place here your own template stuff, not instantiated by factory
24#include <libfac/factor/tmpl_inst.h>
25#include <libfac/factor/class.cc>
26
27//template class List<IntList>;
28//template class ListIterator<IntList>;
29
30template class Substitution<CanonicalForm>;
31template class List<SForm>;
32template class ListIterator<SForm>;
33
34#ifndef NOSTREAMIO
35template OSTREAM & operator << ( OSTREAM &, const List<int> & );
36template OSTREAM & operator << ( OSTREAM &, const List<IntList> & );
37#endif
38
39// for charsets:
40//template class List<CFList>;
41//template class ListIterator<CFList>;
42
43#ifndef NOSTREAMIO
44template OSTREAM & operator << ( OSTREAM &, const List<CFList> & );
45template OSTREAM & operator << ( OSTREAM &, const List<Variable> & );
46template OSTREAM & operator << ( OSTREAM &, const Array<int> & );
47#endif
48
49template class Array<int>;
50template class Array<Variable>;
51
52// for database
53#ifdef HAVE_DATABASE
54template class List<CFFList>;
55template class ListIterator<CFFList>;
56#endif /* HAVE_DATABASE */
Note: See TracBrowser for help on using the repository browser.