00001 // QMcBeaver 00002 // 00003 // Constructed by 00004 // 00005 // Michael Todd Feldmann 00006 // and 00007 // David Randall "Chip" Kent IV 00008 // 00009 // Copyright 2000. All rights reserved. 00010 // 00011 // drkent@users.sourceforge.net mtfeldmann@users.sourceforge.net 00012 00013 #ifndef QMCLineSearchStepLengthSelectionFactory_H 00014 #define QMCLineSearchStepLengthSelectionFactory_H 00015 00016 #include <string> 00017 00018 #include "QMCLineSearchStepLengthSelectionAlgorithm.h" 00019 00020 using namespace std; 00021 00028 class QMCLineSearchStepLengthSelectionFactory 00029 { 00030 public: 00036 static QMCLineSearchStepLengthSelectionAlgorithm * factory(string & Type); 00037 }; 00038 00039 #endif 00040 00041 00042 00043 00044