1 | //////////////////////////////////////////////////////////// |
---|
2 | // emacs edit mode for this file is -*- C++ -*- |
---|
3 | //////////////////////////////////////////////////////////// |
---|
4 | |
---|
5 | #include "config.h" |
---|
6 | |
---|
7 | // #include <factory/factoryconf.h> |
---|
8 | |
---|
9 | // #include "factory.h" |
---|
10 | #include "cf_iter.h" |
---|
11 | #include "canonicalform.h" |
---|
12 | #include "cf_assert.h" |
---|
13 | #include "cf_reval.h" |
---|
14 | |
---|
15 | //#include "templates/ftmpl_array.cc" |
---|
16 | //#include "templates/ftmpl_factor.cc" |
---|
17 | #include "templates/ftmpl_list.cc" |
---|
18 | //#include "templates/ftmpl_functions.h" |
---|
19 | //#include "templates/ftmpl_matrix.cc" |
---|
20 | |
---|
21 | // place here your own template stuff, not instantiated by factory |
---|
22 | #include <libfac/factor/tmpl_inst.h> |
---|
23 | #include <libfac/factor/class.cc> |
---|
24 | |
---|
25 | //template class List<IntList>; |
---|
26 | //template class ListIterator<IntList>; |
---|
27 | |
---|
28 | template class Substitution<CanonicalForm>; |
---|
29 | template class List<SForm>; |
---|
30 | template class ListIterator<SForm>; |
---|
31 | |
---|
32 | #ifndef NOSTREAMIO |
---|
33 | template OSTREAM & operator << ( OSTREAM &, const List<int> & ); |
---|
34 | template OSTREAM & operator << ( OSTREAM &, const List<IntList> & ); |
---|
35 | #endif |
---|
36 | |
---|
37 | // for charsets: |
---|
38 | //template class List<CFList>; |
---|
39 | //template class ListIterator<CFList>; |
---|
40 | |
---|
41 | #ifndef NOSTREAMIO |
---|
42 | template OSTREAM & operator << ( OSTREAM &, const List<CFList> & ); |
---|
43 | template OSTREAM & operator << ( OSTREAM &, const List<Variable> & ); |
---|
44 | template OSTREAM & operator << ( OSTREAM &, const Array<int> & ); |
---|
45 | #endif |
---|
46 | |
---|
47 | template class Array<int>; |
---|
48 | template class Array<Variable>; |
---|
49 | |
---|
50 | // for database |
---|
51 | #ifdef HAVE_DATABASE |
---|
52 | template class List<CFFList>; |
---|
53 | template class ListIterator<CFFList>; |
---|
54 | #endif /* HAVE_DATABASE */ |
---|