#ifndef ANALYSIS_IVCOMPARISON_HXX #define ANALYSIS_IVCOMPARISON_HXX #include namespace COMET{ class IVComparison; } class COMET::IVComparison{ public: IVComparison(){} virtual ~IVComparison(){} virtual bool operator()(double lhs,double rhs); virtual bool operator()(const std::string& lhs,const std::string& rhs); static IVComparison* Make(const std::string& name); }; #endif // ANALYSIS_IVCOMPARISON_HXX