source: git/factory/libfac/factor/tmpl_inst.cc @ 800704

spielwiese
Last change on this file since 800704 was 800704, checked in by Martin Lee <martinlee84@…>, 11 years ago
chg: sync with master
  • Property mode set to 100644
File size: 1.5 KB
Line 
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
25template class List<IntList>;
26template class ListIterator<IntList>;
27
28template class Substitution<CanonicalForm>;
29template class List<SForm>;
30template class ListIterator<SForm>;
31
32#ifndef NOSTREAMIO
33template OSTREAM & operator << ( OSTREAM &, const List<int> & );
34template OSTREAM & operator << ( OSTREAM &, const List<IntList> & );
35#endif
36
37// for charsets:
38template class List<CFList>;
39template class ListIterator<CFList>;
40
41#ifndef NOSTREAMIO
42template OSTREAM & operator << ( OSTREAM &, const List<CFList> & );
43template OSTREAM & operator << ( OSTREAM &, const List<Variable> & );
44template OSTREAM & operator << ( OSTREAM &, const Array<int> & );
45#endif
46
47template class Array<int>;
48template class Array<Variable>;
49
50// for database
51#ifdef HAVE_DATABASE
52template class List<CFFList>;
53template class ListIterator<CFFList>;
54#endif /* HAVE_DATABASE */
Note: See TracBrowser for help on using the repository browser.