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
RevLine 
[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
25template class List<IntList>;
26template class ListIterator<IntList>;
27
28template class Substitution<CanonicalForm>;
29template class List<SForm>;
30template class ListIterator<SForm>;
31
[14b1e65]32#ifndef NOSTREAMIO
[55abfc]33template OSTREAM & operator << ( OSTREAM &, const List<int> & );
34template OSTREAM & operator << ( OSTREAM &, const List<IntList> & );
[14b1e65]35#endif
[1a80b4]36
37// for charsets:
38template class List<CFList>;
39template class ListIterator<CFList>;
40
[14b1e65]41#ifndef NOSTREAMIO
[55abfc]42template OSTREAM & operator << ( OSTREAM &, const List<CFList> & );
43template OSTREAM & operator << ( OSTREAM &, const List<Variable> & );
44template OSTREAM & operator << ( OSTREAM &, const Array<int> & );
[14b1e65]45#endif
[1a80b4]46
47template class Array<int>;
48template class Array<Variable>;
49
[4a81ec]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.