00001 #ifndef FITSTATE_H_ 00002 #define FITSTATE_H_ 00003 //_____________________________________________________________________________ 00013 00014 class FitContext; 00015 00016 class FitState { 00017 00018 public: 00019 virtual ~FitState() {}; 00020 00024 virtual void Iterate(FitContext& context) const = 0; 00025 00029 virtual const std::string& Name() const = 0; 00030 }; 00031 00032 #endif // FITSTATE_H_
1.3.9.1