openModeller  Version 1.4.0
bs_algorithm_factory.hh
Go to the documentation of this file.
00001 
00031 #ifndef _BS_ALGORITHM_FACTORY_HH_
00032 #define _BS_ALGORITHM_FACTORY_HH_
00033 
00034 #include <openmodeller/om.hh>
00035 
00036 class BSAlgorithmFactory
00037 {
00038 public:
00039   virtual ~BSAlgorithmFactory(){};
00040   virtual AlgorithmImpl * getBSAlgorithm() = 0;
00041 };
00042 
00043 
00044 #endif
00045