openModeller  Version 1.4.0
PreChiSquareFactory.hh
Go to the documentation of this file.
00001 
00028 #ifndef PRE_CHISQUAREFACTORY_HH
00029   #define PRE_CHISQUAREFACTORY_HH
00030 
00031   #include "PreAlgorithmFactory.hh"
00032   #include "PreParameters.hh"
00033   
00034   class dllexp PreChiSquareFactory : public PreAlgorithmFactory
00035   {
00036     public :
00037       
00038       //Default constructor
00039       PreChiSquareFactory();      
00040       
00041 
00042       //Default Destructor
00043       ~PreChiSquareFactory();
00044       
00045     protected :  
00052       PreAlgorithm* build( const PreParameters& arg );
00053       
00054   };
00055 
00056   namespace
00057   {  
00058     static PreChiSquareFactory PreChiSquareFactory_instance;
00059   };
00060 
00061 #endif
00062