[1a80b4] | 1 | //////////////////////////////////////////////////////////// |
---|
| 2 | // emacs edit mode for this file is -*- C++ -*- |
---|
| 3 | //////////////////////////////////////////////////////////// |
---|
| 4 | |
---|
[32248f] | 5 | #include "config.h" |
---|
[1a80b4] | 6 | |
---|
[32248f] | 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" |
---|
[1a80b4] | 14 | |
---|
[800704] | 15 | //#include "templates/ftmpl_array.cc" |
---|
| 16 | //#include "templates/ftmpl_factor.cc" |
---|
[9f39e6] | 17 | #include "templates/ftmpl_list.cc" |
---|
[800704] | 18 | //#include "templates/ftmpl_functions.h" |
---|
| 19 | //#include "templates/ftmpl_matrix.cc" |
---|
[1a80b4] | 20 | |
---|
| 21 | // place here your own template stuff, not instantiated by factory |
---|
[d92d71] | 22 | #include <libfac/factor/tmpl_inst.h> |
---|
| 23 | #include <libfac/factor/class.cc> |
---|
[1a80b4] | 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 | |
---|
[14b1e65] | 32 | #ifndef NOSTREAMIO |
---|
[55abfc] | 33 | template OSTREAM & operator << ( OSTREAM &, const List<int> & ); |
---|
| 34 | template OSTREAM & operator << ( OSTREAM &, const List<IntList> & ); |
---|
[14b1e65] | 35 | #endif |
---|
[1a80b4] | 36 | |
---|
| 37 | // for charsets: |
---|
| 38 | template class List<CFList>; |
---|
| 39 | template class ListIterator<CFList>; |
---|
| 40 | |
---|
[14b1e65] | 41 | #ifndef NOSTREAMIO |
---|
[55abfc] | 42 | template OSTREAM & operator << ( OSTREAM &, const List<CFList> & ); |
---|
| 43 | template OSTREAM & operator << ( OSTREAM &, const List<Variable> & ); |
---|
| 44 | template OSTREAM & operator << ( OSTREAM &, const Array<int> & ); |
---|
[14b1e65] | 45 | #endif |
---|
[1a80b4] | 46 | |
---|
| 47 | template class Array<int>; |
---|
| 48 | template class Array<Variable>; |
---|
| 49 | |
---|
[4a81ec] | 50 | // for database |
---|
| 51 | #ifdef HAVE_DATABASE |
---|
| 52 | template class List<CFFList>; |
---|
| 53 | template class ListIterator<CFFList>; |
---|
| 54 | #endif /* HAVE_DATABASE */ |
---|