openModeller  Version 1.5.0
PreAlgorithmFactory.hh
Go to the documentation of this file.
1 
28 #ifndef PRE_ALGORITHM_FACTORIES_HH
29  #define PRE_ALGORITHM_FACTORIES_HH
30 
31  #include "PreChiSquareFactory.hh"
32  #include "PreJackknifeFactory.hh"
33 
34 #endif
35 
36 #ifndef _PRE_ALGORITHMFACTORY_
37  #define _PRE_ALGORITHMFACTORY_
38 
39  #include "PreAlgorithm.hh"
40  #include "PreParameters.hh"
41 
42  #include "PreFactory.hh"
43 
44  #include <string>
45 
46  // adapted from Terralib PDI (Digital Image Processing) to OM Pre-analysis (Missae - DPI/INPE)
47 
48  class dllexp PreAlgorithmFactory :
49  public PreFactory< PreAlgorithm, PreParameters >
50  {
51  public :
52 
53  //Default Destructor
54  virtual ~PreAlgorithmFactory();
55 
56  protected :
57 
58  //Default constructor.
59  //factoryName: Factory name.
60  PreAlgorithmFactory( const std::string& factoryName );
61  };
62 
63 #endif
64 
65 
66